Package org.apache.lucene.util.automaton
Class Transition
- java.lang.Object
-
- org.apache.lucene.util.automaton.Transition
-
-
Field Summary
Fields Modifier and Type Field Description static Comparator<Transition>
CompareByDestThenMinMax
static Comparator<Transition>
CompareByMinMaxThenDest
-
Constructor Summary
Constructors Constructor Description Transition(int min, int max, State to)
Constructs a new transition.Transition(int c, State to)
Constructs a new singleton interval transition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Transition
clone()
Clones this transition.boolean
equals(Object obj)
Checks for equality.State
getDest()
Returns destination of this transition.int
getMax()
Returns maximum of this transition interval.int
getMin()
Returns minimum of this transition interval.int
hashCode()
Returns hash code.String
toString()
Returns a string describing this state.
-
-
-
Field Detail
-
CompareByDestThenMinMax
public static final Comparator<Transition> CompareByDestThenMinMax
-
CompareByMinMaxThenDest
public static final Comparator<Transition> CompareByMinMaxThenDest
-
-
Constructor Detail
-
Transition
public Transition(int c, State to)
Constructs a new singleton interval transition.- Parameters:
c
- transition codepointto
- destination state
-
Transition
public Transition(int min, int max, State to)
Constructs a new transition. Both end points are included in the interval.- Parameters:
min
- transition interval minimummax
- transition interval maximumto
- destination state
-
-
Method Detail
-
getMin
public int getMin()
Returns minimum of this transition interval.
-
getMax
public int getMax()
Returns maximum of this transition interval.
-
getDest
public State getDest()
Returns destination of this transition.
-
equals
public boolean equals(Object obj)
Checks for equality.
-
hashCode
public int hashCode()
Returns hash code. The hash code is based on the character interval (not the destination state).
-
clone
public Transition clone()
Clones this transition.
-
toString
public String toString()
Returns a string describing this state. Normally invoked viaAutomaton.toString()
.
-
-