public static enum Expression.Op extends Enum<Expression.Op>
| Enum Constant and Description |
|---|
Add |
Concat |
Divide |
Multiply |
Subtract |
| Modifier and Type | Method and Description |
|---|---|
static Expression.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Expression.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expression.Op Add
public static final Expression.Op Multiply
public static final Expression.Op Subtract
public static final Expression.Op Divide
public static final Expression.Op Concat
public static Expression.Op[] values()
for (Expression.Op c : Expression.Op.values()) System.out.println(c);
public static Expression.Op 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–2013 SignaLab. All rights reserved.