public static enum OperatorAST.Type extends Enum<OperatorAST.Type>
| Enum Constant and Description |
|---|
Apply |
Inverse |
Option |
Plus |
Range |
Star |
Times |
| Modifier and Type | Method and Description |
|---|---|
static OperatorAST.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperatorAST.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperatorAST.Type Apply
public static final OperatorAST.Type Inverse
public static final OperatorAST.Type Option
public static final OperatorAST.Type Plus
public static final OperatorAST.Type Range
public static final OperatorAST.Type Star
public static final OperatorAST.Type Times
public static OperatorAST.Type[] values()
for (OperatorAST.Type c : OperatorAST.Type.values()) System.out.println(c);
public static OperatorAST.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 nullCopyright © 2007-2012 fortytwo.net. All Rights Reserved.