Interface ExpressionNode
-
- All Known Implementing Classes:
ComaExpressionNode,ConstantExpressionNode,EmptyExpressionNode,NegationExpressionNode,RangeExpressionNode,SequenceExpressionNode,WildcardRangeExpression
public interface ExpressionNode
-
-
Field Summary
Fields Modifier and Type Field Description static intCOMA_NODEstatic intCONSTANT_NODEstatic intEMPTY_NODEstatic intNEGATION_NODEstatic intRANGE_NODEstatic intWILDCARD_RANGE_NODE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetType()List<Integer>getValue()
-
-
-
Field Detail
-
CONSTANT_NODE
static final int CONSTANT_NODE
- See Also:
- Constant Field Values
-
EMPTY_NODE
static final int EMPTY_NODE
- See Also:
- Constant Field Values
-
COMA_NODE
static final int COMA_NODE
- See Also:
- Constant Field Values
-
RANGE_NODE
static final int RANGE_NODE
- See Also:
- Constant Field Values
-
NEGATION_NODE
static final int NEGATION_NODE
- See Also:
- Constant Field Values
-
WILDCARD_RANGE_NODE
static final int WILDCARD_RANGE_NODE
- See Also:
- Constant Field Values
-
-