public enum CompileMode extends Enum<CompileMode>
| Enum Constant and Description |
|---|
FULL
Enum value Full.
|
SEMANTIC
Enum value Semantic.
|
SINGLE_BOX
Enum value SingleBox.
|
| Modifier and Type | Method and Description |
|---|---|
static CompileMode |
fromString(String value)
Parses a serialized value to a CompileMode instance.
|
String |
toString() |
static CompileMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompileMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompileMode SEMANTIC
public static final CompileMode FULL
public static final CompileMode SINGLE_BOX
public static CompileMode[] values()
for (CompileMode c : CompileMode.values()) System.out.println(c);
public static CompileMode 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 nullpublic static CompileMode fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<CompileMode>Copyright © 2019. All rights reserved.