Package org.joni.ast
Enum CClassNode.CCVALTYPE
- java.lang.Object
-
- java.lang.Enum<CClassNode.CCVALTYPE>
-
- org.joni.ast.CClassNode.CCVALTYPE
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CClassNode.CCVALTYPE>
- Enclosing class:
- CClassNode
public static enum CClassNode.CCVALTYPE extends java.lang.Enum<CClassNode.CCVALTYPE>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLASS
CODE_POINT
SB
-
Constructor Summary
Constructors Modifier Constructor Description private
CCVALTYPE()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CClassNode.CCVALTYPE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CClassNode.CCVALTYPE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SB
public static final CClassNode.CCVALTYPE SB
-
CODE_POINT
public static final CClassNode.CCVALTYPE CODE_POINT
-
CLASS
public static final CClassNode.CCVALTYPE CLASS
-
-
Method Detail
-
values
public static CClassNode.CCVALTYPE[] 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 (CClassNode.CCVALTYPE c : CClassNode.CCVALTYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CClassNode.CCVALTYPE 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
-
-