| Package | Description |
|---|---|
| graph.tree.pq |
Classes representing a PQ-tree and its elements.
|
| Modifier and Type | Method and Description |
|---|---|
PQNodeType |
PQTreeNode.getType() |
static PQNodeType |
PQNodeType.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PQNodeType[] |
PQNodeType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PQTreeNode.setType(PQNodeType type) |
| Constructor and Description |
|---|
PQTreeNode(PQNodeType type)
Construct a PQ-tree node of the given type.
|
PQTreeNode(PQNodeType type,
java.lang.Object content)
Constructs a PQ-tree node of the given type with the specified content
|