public static enum RedBlackTree.Node.NodeColor extends Enum<RedBlackTree.Node.NodeColor>
| Modifier and Type | Method and Description |
|---|---|
static RedBlackTree.Node.NodeColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedBlackTree.Node.NodeColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedBlackTree.Node.NodeColor BLACK
public static final RedBlackTree.Node.NodeColor RED
public static RedBlackTree.Node.NodeColor[] values()
for (RedBlackTree.Node.NodeColor c : RedBlackTree.Node.NodeColor.values()) System.out.println(c);
public static RedBlackTree.Node.NodeColor 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 © 1994–2024 Peter Murray-Rust. All rights reserved.