public static enum ProgressCallback.Step extends Enum<ProgressCallback.Step>
| Enum Constant and Description |
|---|
ADDING_PATHS |
COMPLETE |
FINDING_PATH |
MERGING_EDGES |
SEARCHING_DESTINATION_VERTEX_EDGES |
SEARCHING_EDGES |
SEARCHING_SOURCE_VERTEX_EDGES |
| Modifier and Type | Method and Description |
|---|---|
String |
formatMessage(Integer edgeIndex,
Integer vertexCount) |
static ProgressCallback.Step |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgressCallback.Step[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressCallback.Step COMPLETE
public static final ProgressCallback.Step SEARCHING_SOURCE_VERTEX_EDGES
public static final ProgressCallback.Step SEARCHING_DESTINATION_VERTEX_EDGES
public static final ProgressCallback.Step MERGING_EDGES
public static final ProgressCallback.Step ADDING_PATHS
public static final ProgressCallback.Step SEARCHING_EDGES
public static final ProgressCallback.Step FINDING_PATH
public static ProgressCallback.Step[] values()
for (ProgressCallback.Step c : ProgressCallback.Step.values()) System.out.println(c);
public static ProgressCallback.Step 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–2021 MWARE SOLUTIONS. All rights reserved.