public enum MetaInfoValue extends java.lang.Enum<MetaInfoValue>
Enum Constant and Description |
---|
LANG_VERILOG |
LANG_VHDL |
LOOP_COND |
LOOP_ENTRY |
LOOP_FIN |
LOOP_INC |
LOOP_INIT |
Modifier and Type | Method and Description |
---|---|
static MetaInfoValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MetaInfoValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetaInfoValue LANG_VHDL
public static final MetaInfoValue LANG_VERILOG
public static final MetaInfoValue LOOP_INIT
public static final MetaInfoValue LOOP_ENTRY
public static final MetaInfoValue LOOP_COND
public static final MetaInfoValue LOOP_INC
public static final MetaInfoValue LOOP_FIN
public static MetaInfoValue[] values()
for (MetaInfoValue c : MetaInfoValue.values()) System.out.println(c);
public static MetaInfoValue valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null