|
abc4j API Specification | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Transition | |
|---|---|
| scanner | This package contains classes for scanners needed for syntax analysis : a scanner is in charge of retrieving tokens from an input stream. |
| Uses of Transition in scanner |
|---|
| Subclasses of Transition in scanner | |
|---|---|
class |
IsAlphaTransition
This class defines a transition that corresponds to any alpha character : a letter, upper or lower case. |
class |
IsDigitTransition
This class defines a transition that corresponds to a digit character. |
| Methods in scanner that return Transition | |
|---|---|
Transition |
State.getTransitionFor(char character)
Returns the transition that can be activated for the specified character. |
Transition |
FinaleStateAutomata.getTransitionFor(char character)
Returns the transition that can be activated from this automata's current state with the specified character. |
Transition[] |
State.getTransitions()
Returns an array containing transitions from this state. |
| Methods in scanner with parameters of type Transition | |
|---|---|
void |
State.addTransition(Transition transition)
Adds a transition to this state. |
boolean |
State.removeTransition(Transition transition)
Removes the given transition. |
|
abc4j API Specification | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||