public static enum CompilationContext.Type extends Enum<CompilationContext.Type>
Enum Constant and Description |
---|
Boolean |
Double |
Float |
Int |
Long |
Object |
Modifier and Type | Method and Description |
---|---|
static CompilationContext.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompilationContext.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompilationContext.Type Boolean
public static final CompilationContext.Type Int
public static final CompilationContext.Type Float
public static final CompilationContext.Type Long
public static final CompilationContext.Type Double
public static final CompilationContext.Type Object
public static CompilationContext.Type[] values()
for (CompilationContext.Type c : CompilationContext.Type.values()) System.out.println(c);
public static CompilationContext.Type 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