Uses of Class
org.shiwa.fgi.iwir.condition.ConditionToken

Packages that use ConditionToken
org.shiwa.fgi.iwir.condition Provides the necessary tools for evaluating a condition according to the IWIR specification. 
 

Uses of ConditionToken in org.shiwa.fgi.iwir.condition
 

Methods in org.shiwa.fgi.iwir.condition that return ConditionToken
 ConditionToken ConditionNode.getOp()
          Gets the current operation or null if the operation is not set.
static ConditionToken ConditionAST.parseToken(java.lang.String token)
          Parses a string and returns the corresponding token.
static ConditionToken ConditionToken.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ConditionToken[] ConditionToken.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.shiwa.fgi.iwir.condition with parameters of type ConditionToken
static java.util.List<ConditionNode> ConditionNode.split(ConditionNode node, ConditionToken token)
          Split.
static java.lang.String ConditionAST.tokenToString(ConditionToken token)
          To string returns the string representation of an operand.
 

Constructors in org.shiwa.fgi.iwir.condition with parameters of type ConditionToken
ConditionNode(ConditionToken op)
          Instantiates a new node with the given Operator.
ConditionNode(ConditionToken type, java.lang.String string)
          Instantiates a new node with the given String.