Uses of Interface
org.extex.ocpware.compiler.left.Left

Packages that use Left
org.extex.ocpware.compiler.arith This package contains arithmetic expression classes for compiling OCPs. 
org.extex.ocpware.compiler.expression   
org.extex.ocpware.compiler.left This package contains the left term classes for compiling OCPs. 
org.extex.ocpware.compiler.parser This package contains some utility classes for compiling OCPs. 
 

Uses of Left in org.extex.ocpware.compiler.arith
 

Classes in org.extex.ocpware.compiler.arith that implement Left
 class Constant
          This class provides a constant arithmetic expression.
 

Uses of Left in org.extex.ocpware.compiler.expression
 

Methods in org.extex.ocpware.compiler.expression that return types with arguments of type Left
 java.util.List<Left> Expression.getTotalLeft()
          Getter for totalLeft.
 

Method parameters in org.extex.ocpware.compiler.expression with type arguments of type Left
 void Expression.setTotalLeft(java.util.List<Left> totalLeft)
          Setter for totalLeft.
 

Uses of Left in org.extex.ocpware.compiler.left
 

Classes in org.extex.ocpware.compiler.left that implement Left
 class AliasLeft
          This class represents a reference to an alias as left item.
 class BeginningLeft
          This class represents a reference to the beginning of the sequence.
 class ChoiceLeft
          This class represents a list of alternative left items.
 class CompleteLeft
          This class represents a left item with minimum and maximum restrictions.
 class DoubleLeft
          This class represents a range of characters as left item.
 class EndLeft
          This class represents a reference to the end of the sequence.
 class LeftList
          This class represents a list of left items.
 class NotChoiceLeft
          This class represents a negated list of left items.
 class PlusLeft
          This class represents a left item with a lower bound of occurrences.
 class StringItem
          This class represents a string of characters as left item.
 class WildCard
          This class represents an arbitrary character as left items.
 

Methods in org.extex.ocpware.compiler.left that return Left
static Left LeftParser.completeLeft(ParserStream s)
          Parse a complete left item.
static Left LeftParser.oneLeft(ParserStream s)
          Parse a left item.
 

Methods in org.extex.ocpware.compiler.left that return types with arguments of type Left
static java.util.List<Left> LeftParser.left(ParserStream s)
          Parse a list of left items.
 

Constructors in org.extex.ocpware.compiler.left with parameters of type Left
CompleteLeft(Left left, int from, int to)
          Creates a new object.
PlusLeft(Left left, int from)
          Creates a new object.
 

Constructor parameters in org.extex.ocpware.compiler.left with type arguments of type Left
LeftList(java.util.List<Left> list)
          Creates a new object.
 

Uses of Left in org.extex.ocpware.compiler.parser
 

Methods in org.extex.ocpware.compiler.parser that return Left
 Left CompilerState.lookupAlias(java.lang.String alias)
          Find a value for an alias name.
 

Methods in org.extex.ocpware.compiler.parser that return types with arguments of type Left
 java.util.Map<java.lang.String,Left> CompilerState.getAliases()
          Getter for aliases.
 

Method parameters in org.extex.ocpware.compiler.parser with type arguments of type Left
 void CompilerState.setAliases(java.util.Map<java.lang.String,Left> aliases)
          Setter for aliases.