protected static enum CrossComponentIteratorModified.VisitColor extends Enum<CrossComponentIteratorModified.VisitColor>
| Enum Constant and Description |
|---|
BLACK
Vertex has been returned via iterator, and we're done with all of its
out-edges.
|
GRAY
Vertex has been returned via iterator, but we're not done with all of
its out-edges yet.
|
WHITE
Vertex has not been returned via iterator yet.
|
| Modifier and Type | Method and Description |
|---|---|
static CrossComponentIteratorModified.VisitColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrossComponentIteratorModified.VisitColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrossComponentIteratorModified.VisitColor WHITE
public static final CrossComponentIteratorModified.VisitColor GRAY
public static final CrossComponentIteratorModified.VisitColor BLACK
public static CrossComponentIteratorModified.VisitColor[] values()
for (CrossComponentIteratorModified.VisitColor c : CrossComponentIteratorModified.VisitColor.values()) System.out.println(c);
public static CrossComponentIteratorModified.VisitColor 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 © 2016. All rights reserved.