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