Package org.eclipse.steady.java.sign
Enum ASTUtil.NODE_COMPARE_MODE
- java.lang.Object
-
- java.lang.Enum<ASTUtil.NODE_COMPARE_MODE>
-
- org.eclipse.steady.java.sign.ASTUtil.NODE_COMPARE_MODE
-
- All Implemented Interfaces:
Serializable,Comparable<ASTUtil.NODE_COMPARE_MODE>
- Enclosing class:
- ASTUtil
public static enum ASTUtil.NODE_COMPARE_MODE extends Enum<ASTUtil.NODE_COMPARE_MODE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENTITY_TYPEVALUE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ASTUtil.NODE_COMPARE_MODEvalueOf(String name)Returns the enum constant of this type with the specified name.static ASTUtil.NODE_COMPARE_MODE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENTITY_TYPE
public static final ASTUtil.NODE_COMPARE_MODE ENTITY_TYPE
-
VALUE
public static final ASTUtil.NODE_COMPARE_MODE VALUE
-
-
Method Detail
-
values
public static ASTUtil.NODE_COMPARE_MODE[] 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 (ASTUtil.NODE_COMPARE_MODE c : ASTUtil.NODE_COMPARE_MODE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ASTUtil.NODE_COMPARE_MODE valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-