public static enum VerticesMap.Counters extends Enum<VerticesMap.Counters>
| Enum Constant and Description |
|---|
EDGES_PROCESSED |
VERTICES_PROCESSED |
| Modifier and Type | Method and Description |
|---|---|
static VerticesMap.Counters |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerticesMap.Counters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerticesMap.Counters VERTICES_PROCESSED
public static final VerticesMap.Counters EDGES_PROCESSED
public static VerticesMap.Counters[] values()
for (VerticesMap.Counters c : VerticesMap.Counters.values()) System.out.println(c);
public static VerticesMap.Counters 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 © 2012–2016. All rights reserved.