public enum EnumGateLogic extends java.lang.Enum<EnumGateLogic>
Modifier and Type | Field and Description |
---|---|
java.lang.String |
tag |
static EnumGateLogic[] |
VALUES |
Modifier and Type | Method and Description |
---|---|
static EnumGateLogic |
getByOrdinal(int ord) |
static EnumGateLogic |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumGateLogic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumGateLogic AND
public static final EnumGateLogic OR
public static final EnumGateLogic[] VALUES
public final java.lang.String tag
public static EnumGateLogic[] values()
for (EnumGateLogic c : EnumGateLogic.values()) System.out.println(c);
public static EnumGateLogic 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 nullpublic static EnumGateLogic getByOrdinal(int ord)