public enum BuiltinClass extends Enum<BuiltinClass>
| Enum Constant and Description |
|---|
TypeIdentifier |
| Modifier and Type | Method and Description |
|---|---|
Ref<Type> |
ref() |
String |
typeName() |
static BuiltinClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuiltinClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuiltinClass TypeIdentifier
public static BuiltinClass[] values()
for (BuiltinClass c : BuiltinClass.values()) System.out.println(c);
public static BuiltinClass 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 null@NotNull public String typeName()
Copyright © 2017. All rights reserved.