public static enum BinExpBlock.TokenType extends Enum<BinExpBlock.TokenType>
| Enum Constant and Description |
|---|
AS |
DIVISION |
IN |
INSTANCEOF |
MINUS |
PLUS |
POWER |
PRODUCT |
| Modifier and Type | Field and Description |
|---|---|
ImageIcon |
icon |
String |
text |
org.codehaus.groovy.syntax.Token |
token |
| Modifier and Type | Method and Description |
|---|---|
static BinExpBlock.TokenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinExpBlock.TokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinExpBlock.TokenType PLUS
public static final BinExpBlock.TokenType MINUS
public static final BinExpBlock.TokenType PRODUCT
public static final BinExpBlock.TokenType DIVISION
public static final BinExpBlock.TokenType POWER
public static final BinExpBlock.TokenType INSTANCEOF
public static final BinExpBlock.TokenType IN
public static final BinExpBlock.TokenType AS
public final org.codehaus.groovy.syntax.Token token
public final ImageIcon icon
public final String text
public static BinExpBlock.TokenType[] values()
for (BinExpBlock.TokenType c : BinExpBlock.TokenType.values()) System.out.println(c);
public static BinExpBlock.TokenType 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 © 2012–2015 MARID software development group. All rights reserved.