public static enum PQRTree.NodeType extends Enum<PQRTree.NodeType>
| Modifier and Type | Method and Description |
|---|---|
static PQRTree.NodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PQRTree.NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PQRTree.NodeType P
public static final PQRTree.NodeType Q
public static final PQRTree.NodeType R
public static final PQRTree.NodeType Leaf
public static PQRTree.NodeType[] values()
for (PQRTree.NodeType c : PQRTree.NodeType.values()) System.out.println(c);
public static PQRTree.NodeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.