Package org.accellera.IPXACT_1685_2014
Enum IpxactFileTypesEnum
- java.lang.Object
-
- java.lang.Enum<IpxactFileTypesEnum>
-
- org.accellera.IPXACT_1685_2014.IpxactFileTypesEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IpxactFileTypesEnum>
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v3.0.2", date="2026-01-14T04:58:45Z") public enum IpxactFileTypesEnum extends java.lang.Enum<IpxactFileTypesEnum>Java class for ipxactFileTypesEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ipxactFileTypesEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="busDefinition"/> <enumeration value="abstractionDefinition"/> <enumeration value="component"/> <enumeration value="abstractor"/> <enumeration value="design"/> <enumeration value="designConfig"/> <enumeration value="generatorChain"/> <enumeration value="catalog"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSTRACTION_DEFINITIONABSTRACTORBUS_DEFINITIONCATALOGCOMPONENTDESIGNDESIGN_CONFIGGENERATOR_CHAIN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IpxactFileTypesEnumfromValue(java.lang.String v)java.lang.Stringvalue()static IpxactFileTypesEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IpxactFileTypesEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BUS_DEFINITION
public static final IpxactFileTypesEnum BUS_DEFINITION
-
ABSTRACTION_DEFINITION
public static final IpxactFileTypesEnum ABSTRACTION_DEFINITION
-
COMPONENT
public static final IpxactFileTypesEnum COMPONENT
-
ABSTRACTOR
public static final IpxactFileTypesEnum ABSTRACTOR
-
DESIGN
public static final IpxactFileTypesEnum DESIGN
-
DESIGN_CONFIG
public static final IpxactFileTypesEnum DESIGN_CONFIG
-
GENERATOR_CHAIN
public static final IpxactFileTypesEnum GENERATOR_CHAIN
-
CATALOG
public static final IpxactFileTypesEnum CATALOG
-
-
Method Detail
-
values
public static IpxactFileTypesEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IpxactFileTypesEnum c : IpxactFileTypesEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IpxactFileTypesEnum valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public java.lang.String value()
-
fromValue
public static IpxactFileTypesEnum fromValue(java.lang.String v)
-
-