Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.apache.xmlbeans.impl.regex.Op

Uses of Op in org.apache.xmlbeans.impl.regex
 

Subclasses of Op in org.apache.xmlbeans.impl.regex
(package private) static class Op.CharOp
           
(package private) static class Op.ChildOp
           
(package private) static class Op.ConditionOp
           
(package private) static class Op.ModifierOp
           
(package private) static class Op.RangeOp
           
(package private) static class Op.StringOp
           
(package private) static class Op.UnionOp
           
 

Fields in org.apache.xmlbeans.impl.regex declared as Op
(package private)  Op RegularExpression.operations
           
(package private)  Op Op.next
           
(package private)  Op Op.ChildOp.child
           
(package private)  Op Op.ConditionOp.condition
           
(package private)  Op Op.ConditionOp.yes
           
(package private)  Op Op.ConditionOp.no
           
 

Methods in org.apache.xmlbeans.impl.regex that return Op
private  Op RegularExpression.compile(Token tok, Op next, boolean reverse)
          Converts a token to an operation.
(package private) static Op Op.createDot()
           
(package private)  Op Op.elementAt(int index)
           
(package private)  Op Op.getChild()
           
(package private)  Op Op.UnionOp.elementAt(int index)
           
(package private)  Op Op.ChildOp.getChild()
           
 

Methods in org.apache.xmlbeans.impl.regex with parameters of type Op
private  Op RegularExpression.compile(Token tok, Op next, boolean reverse)
          Converts a token to an operation.
private  int RegularExpression.matchCharArray(RegularExpression.Context con, Op op, int offset, int dx, int opts)
           
private  int RegularExpression.matchString(RegularExpression.Context con, Op op, int offset, int dx, int opts)
           
private  int RegularExpression.matchCharacterIterator(RegularExpression.Context con, Op op, int offset, int dx, int opts)
           
(package private) static Op.CharOp Op.createCapture(int number, Op next)
           
(package private) static Op.ChildOp Op.createLook(int type, Op next, Op branch)
           
(package private) static Op.ChildOp Op.createIndependent(Op next, Op branch)
           
(package private) static Op.ModifierOp Op.createModifier(Op next, Op branch, int add, int mask)
           
(package private) static Op.ConditionOp Op.createCondition(Op next, int ref, Op conditionflow, Op yesflow, Op noflow)
           
(package private)  void Op.UnionOp.addElement(Op op)
           
(package private)  void Op.ChildOp.setChild(Op child)
           
 

Constructors in org.apache.xmlbeans.impl.regex with parameters of type Op
Op.ConditionOp(int type, int refno, Op conditionflow, Op yesflow, Op noflow)