public class Transition extends Object implements Cloneable
A transition, which belongs to a source state, consists of a Unicode codepoint interval and a destination state.
Modifier and Type | Field and Description |
---|---|
static Comparator<Transition> |
CompareByDestThenMinMax |
static Comparator<Transition> |
CompareByMinMaxThenDest |
Constructor and Description |
---|
Transition(int min,
int max,
State to)
Constructs a new transition.
|
Transition(int c,
State to)
Constructs a new singleton interval transition.
|
Modifier and Type | Method and 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.
|
public static final Comparator<Transition> CompareByDestThenMinMax
public static final Comparator<Transition> CompareByMinMaxThenDest
public Transition(int c, State to)
c
- transition codepointto
- destination statepublic Transition(int min, int max, State to)
min
- transition interval minimummax
- transition interval maximumto
- destination statepublic int getMin()
public int getMax()
public State getDest()
public boolean equals(Object obj)
public int hashCode()
public Transition clone()
public String toString()
Automaton.toString()
.Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.