public class ExpressionToken extends Object implements Cloneable
Modifier and Type | Field and Description |
---|---|
static int |
CONDITION |
static int |
OPERATOR_AND |
static int |
OPERATOR_OR |
static int |
PARENTHESIS_END |
static int |
PARENTHESIS_START |
Constructor and Description |
---|
ExpressionToken() |
Modifier and Type | Method and Description |
---|---|
ExpressionToken |
clone() |
static ExpressionToken |
createAndToken() |
static ExpressionToken |
createOrToken() |
boolean |
equals(Object obj) |
String |
getTokenID() |
int |
getType() |
String |
getValue() |
int |
hashCode() |
static boolean |
isOperator(int type) |
static boolean |
isParenthesis(int type) |
void |
setTokenID(String tokenID) |
void |
setType(int type) |
void |
setValue(String value) |
ExpressionToken |
toggleAndOr() |
String |
toString() |
public static final int OPERATOR_AND
public static final int OPERATOR_OR
public static final int PARENTHESIS_START
public static final int PARENTHESIS_END
public static final int CONDITION
public ExpressionToken()
public String getTokenID()
public void setTokenID(String tokenID)
public int getType()
public void setType(int type)
public static boolean isOperator(int type)
public static boolean isParenthesis(int type)
public static ExpressionToken createAndToken()
public static ExpressionToken createOrToken()
public ExpressionToken toggleAndOr()
public ExpressionToken clone()
Copyright © 2004-2014 The Kuali Foundation. All Rights Reserved.