Package es.bsc.dataclay.util.filtering
Enum ASTParser.ASTListOp
- java.lang.Object
-
- java.lang.Enum<ASTParser.ASTListOp>
-
- es.bsc.dataclay.util.filtering.ASTParser.ASTListOp
-
- All Implemented Interfaces:
Serializable
,Comparable<ASTParser.ASTListOp>
- Enclosing class:
- ASTParser
public static enum ASTParser.ASTListOp extends Enum<ASTParser.ASTListOp>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ASTParser.ASTListOp
fromString(String token)
static boolean
isASTListOp(String token)
static ASTParser.ASTListOp
valueOf(String name)
Returns the enum constant of this type with the specified name.static ASTParser.ASTListOp[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FILTER
public static final ASTParser.ASTListOp FILTER
-
ANDEXPR
public static final ASTParser.ASTListOp ANDEXPR
-
COMP
public static final ASTParser.ASTListOp COMP
-
-
Field Detail
-
_token
public String _token
-
-
Method Detail
-
values
public static ASTParser.ASTListOp[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ASTParser.ASTListOp c : ASTParser.ASTListOp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ASTParser.ASTListOp valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
isASTListOp
public static boolean isASTListOp(String token)
-
fromString
public static ASTParser.ASTListOp fromString(String token)
-
-