public class Transition
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
A transition, which belongs to a source state, consists of a Unicode character interval and a destination state.
| Constructor and Description |
|---|
Transition(char min,
char max,
State to)
Constructs a new transition.
|
Transition(char c,
State to)
Constructs a new singleton interval transition.
|
| Modifier and Type | Method and Description |
|---|---|
Transition |
clone()
Clones this transition.
|
boolean |
equals(java.lang.Object obj)
Checks for equality.
|
State |
getDest()
Returns destination of this transition.
|
char |
getMax()
Returns maximum of this transition interval.
|
char |
getMin()
Returns minimum of this transition interval.
|
int |
hashCode()
Returns hash code.
|
java.lang.String |
toString()
Returns a string describing this state.
|
public Transition(char c,
State to)
c - transition characterto - destination statepublic Transition(char min,
char max,
State to)
min - transition interval minimummax - transition interval maximumto - destination statepublic char getMin()
public char getMax()
public State getDest()
public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectobj - object to compare withpublic int hashCode()
hashCode in class java.lang.Objectpublic Transition clone()
clone in class java.lang.Objectpublic java.lang.String toString()
Automaton.toString().toString in class java.lang.Object