public enum SymbolJavaType extends java.lang.Enum<SymbolJavaType>
Modifier and Type | Method and Description |
---|---|
static SymbolJavaType |
getEnum(java.lang.String name) |
java.lang.String |
getTypeName() |
static SymbolJavaType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SymbolJavaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymbolJavaType INT
public static final SymbolJavaType INT_LIST
public static SymbolJavaType[] values()
for (SymbolJavaType c : SymbolJavaType.values()) System.out.println(c);
public static SymbolJavaType 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 null@NonNull public final java.lang.String getTypeName()
@Nullable public static SymbolJavaType getEnum(@NonNull java.lang.String name)