public enum ClassDescriptorTokenType extends Enum<ClassDescriptorTokenType>
Enum Constant and Description |
---|
COMMA |
END |
GREATER_THAN |
IDENTIFIER |
LEFT_BRACKET |
LESSER_THAN |
RIGHT_BRACKET |
Modifier and Type | Method and Description |
---|---|
static ClassDescriptorTokenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassDescriptorTokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassDescriptorTokenType IDENTIFIER
public static final ClassDescriptorTokenType LEFT_BRACKET
public static final ClassDescriptorTokenType RIGHT_BRACKET
public static final ClassDescriptorTokenType LESSER_THAN
public static final ClassDescriptorTokenType GREATER_THAN
public static final ClassDescriptorTokenType COMMA
public static final ClassDescriptorTokenType END
public static ClassDescriptorTokenType[] values()
for (ClassDescriptorTokenType c : ClassDescriptorTokenType.values()) System.out.println(c);
public static ClassDescriptorTokenType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2005–2021. All rights reserved.