public enum CompileTypes extends Enum<CompileTypes>
| Modifier and Type | Method and Description |
|---|---|
static CompileTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompileTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompileTypes Function
public static final CompileTypes Array
public static final CompileTypes Class
public static CompileTypes[] values()
for (CompileTypes c : CompileTypes.values()) System.out.println(c);
public static CompileTypes 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 © 2010–2022. All rights reserved.