Package org.accellera.IPXACT_1685_2014
Enum SimpleFileType
- java.lang.Object
-
- java.lang.Enum<SimpleFileType>
-
- org.accellera.IPXACT_1685_2014.SimpleFileType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SimpleFileType>
@Generated(value="com.sun.tools.xjc.Driver", comments="JAXB RI v2.3.8", date="2026-01-14T04:58:58Z") public enum SimpleFileType extends java.lang.Enum<SimpleFileType>Java class for simpleFileType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="simpleFileType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="unknown"/> <enumeration value="cSource"/> <enumeration value="cppSource"/> <enumeration value="asmSource"/> <enumeration value="vhdlSource"/> <enumeration value="vhdlSource-87"/> <enumeration value="vhdlSource-93"/> <enumeration value="verilogSource"/> <enumeration value="verilogSource-95"/> <enumeration value="verilogSource-2001"/> <enumeration value="swObject"/> <enumeration value="swObjectLibrary"/> <enumeration value="vhdlBinaryLibrary"/> <enumeration value="verilogBinaryLibrary"/> <enumeration value="unelaboratedHdl"/> <enumeration value="executableHdl"/> <enumeration value="systemVerilogSource"/> <enumeration value="systemVerilogSource-3.0"/> <enumeration value="systemVerilogSource-3.1"/> <enumeration value="systemCSource"/> <enumeration value="systemCSource-2.0"/> <enumeration value="systemCSource-2.0.1"/> <enumeration value="systemCSource-2.1"/> <enumeration value="systemCSource-2.2"/> <enumeration value="veraSource"/> <enumeration value="eSource"/> <enumeration value="perlSource"/> <enumeration value="tclSource"/> <enumeration value="OVASource"/> <enumeration value="SVASource"/> <enumeration value="pslSource"/> <enumeration value="systemVerilogSource-3.1a"/> <enumeration value="SDC"/> <enumeration value="vhdlAmsSource"/> <enumeration value="verilogAmsSource"/> <enumeration value="systemCAmsSource"/> <enumeration value="libertySource"/> <enumeration value="user"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SimpleFileTypefromValue(java.lang.String v)java.lang.Stringvalue()static SimpleFileTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SimpleFileType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final SimpleFileType UNKNOWN
-
C_SOURCE
public static final SimpleFileType C_SOURCE
-
CPP_SOURCE
public static final SimpleFileType CPP_SOURCE
-
ASM_SOURCE
public static final SimpleFileType ASM_SOURCE
-
VHDL_SOURCE
public static final SimpleFileType VHDL_SOURCE
-
VHDL_SOURCE_87
public static final SimpleFileType VHDL_SOURCE_87
-
VHDL_SOURCE_93
public static final SimpleFileType VHDL_SOURCE_93
-
VERILOG_SOURCE
public static final SimpleFileType VERILOG_SOURCE
-
VERILOG_SOURCE_95
public static final SimpleFileType VERILOG_SOURCE_95
-
VERILOG_SOURCE_2001
public static final SimpleFileType VERILOG_SOURCE_2001
-
SW_OBJECT
public static final SimpleFileType SW_OBJECT
-
SW_OBJECT_LIBRARY
public static final SimpleFileType SW_OBJECT_LIBRARY
-
VHDL_BINARY_LIBRARY
public static final SimpleFileType VHDL_BINARY_LIBRARY
-
VERILOG_BINARY_LIBRARY
public static final SimpleFileType VERILOG_BINARY_LIBRARY
-
UNELABORATED_HDL
public static final SimpleFileType UNELABORATED_HDL
-
EXECUTABLE_HDL
public static final SimpleFileType EXECUTABLE_HDL
-
SYSTEM_VERILOG_SOURCE
public static final SimpleFileType SYSTEM_VERILOG_SOURCE
-
SYSTEM_VERILOG_SOURCE_3_0
public static final SimpleFileType SYSTEM_VERILOG_SOURCE_3_0
-
SYSTEM_VERILOG_SOURCE_3_1
public static final SimpleFileType SYSTEM_VERILOG_SOURCE_3_1
-
SYSTEM_C_SOURCE
public static final SimpleFileType SYSTEM_C_SOURCE
-
SYSTEM_C_SOURCE_2_0
public static final SimpleFileType SYSTEM_C_SOURCE_2_0
-
SYSTEM_C_SOURCE_2_0_1
public static final SimpleFileType SYSTEM_C_SOURCE_2_0_1
-
SYSTEM_C_SOURCE_2_1
public static final SimpleFileType SYSTEM_C_SOURCE_2_1
-
SYSTEM_C_SOURCE_2_2
public static final SimpleFileType SYSTEM_C_SOURCE_2_2
-
VERA_SOURCE
public static final SimpleFileType VERA_SOURCE
-
E_SOURCE
public static final SimpleFileType E_SOURCE
-
PERL_SOURCE
public static final SimpleFileType PERL_SOURCE
-
TCL_SOURCE
public static final SimpleFileType TCL_SOURCE
-
OVA_SOURCE
public static final SimpleFileType OVA_SOURCE
-
SVA_SOURCE
public static final SimpleFileType SVA_SOURCE
-
PSL_SOURCE
public static final SimpleFileType PSL_SOURCE
-
SYSTEM_VERILOG_SOURCE_3_1_A
public static final SimpleFileType SYSTEM_VERILOG_SOURCE_3_1_A
-
SDC
public static final SimpleFileType SDC
-
VHDL_AMS_SOURCE
public static final SimpleFileType VHDL_AMS_SOURCE
-
VERILOG_AMS_SOURCE
public static final SimpleFileType VERILOG_AMS_SOURCE
-
SYSTEM_C_AMS_SOURCE
public static final SimpleFileType SYSTEM_C_AMS_SOURCE
-
LIBERTY_SOURCE
public static final SimpleFileType LIBERTY_SOURCE
-
USER
public static final SimpleFileType USER
-
-
Method Detail
-
values
public static SimpleFileType[] 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 (SimpleFileType c : SimpleFileType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimpleFileType 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 SimpleFileType fromValue(java.lang.String v)
-
-