public static enum ChainTools.MyType extends java.lang.Enum<ChainTools.MyType>
| Enum Constant and Description |
|---|
Array |
ArrayInStruct |
ArrayWithConstantIndex |
ArrayWithNoIndex |
ArrayWithPartiallyConstantIndex |
ArrayWithVariableIndex |
Global |
Pointer |
Structure |
StructureInDec |
StructureInParam |
| Modifier and Type | Method and Description |
|---|---|
static ChainTools.MyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChainTools.MyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChainTools.MyType Array
public static final ChainTools.MyType ArrayWithConstantIndex
public static final ChainTools.MyType ArrayWithPartiallyConstantIndex
public static final ChainTools.MyType ArrayWithVariableIndex
public static final ChainTools.MyType ArrayWithNoIndex
public static final ChainTools.MyType ArrayInStruct
public static final ChainTools.MyType StructureInParam
public static final ChainTools.MyType StructureInDec
public static final ChainTools.MyType Structure
public static final ChainTools.MyType Pointer
public static final ChainTools.MyType Global
public static ChainTools.MyType[] values()
for (ChainTools.MyType c : ChainTools.MyType.values()) System.out.println(c);
public static ChainTools.MyType 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