| Modifier and Type | Field and Description |
|---|---|
int[] |
children |
Object |
data |
boolean |
deterministic |
int |
kind |
| Constructor and Description |
|---|
State(Automaton.State state) |
State(int kind)
Construct a deterministic state with no children and no supplementary data.
|
State(int kind,
boolean deterministic,
int... children)
Construct a state with no supplementary data.
|
State(int kind,
int... children)
Construct a deterministic state with no supplementary data.
|
State(int kind,
Object data,
boolean deterministic,
int... children)
Construct a state with children and supplementary data.
|
public int kind
public int[] children
public boolean deterministic
public Object data
public State(int kind)
kind - --- State kind (must be positive integer).public State(int kind,
int... children)
kind - --- State kind (must be positive integer).children - --- Array of child indices.public State(int kind,
boolean deterministic,
int... children)
kind - --- State kind (must be positive integer).deterministic - --- Indicates whether node should be treated as
deterministic or not.children - --- Array of child indices.public State(int kind,
Object data,
boolean deterministic,
int... children)
kind - --- State kind (must be positive integer).data - --- Supplementary data store with state.deterministic - --- Indicates whether node should be treated as
deterministic or not.children - --- Array of child indices.public State(Automaton.State state)
Copyright © 2017. All rights reserved.