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