public static enum SccPhaseMasterCompute.Phases extends Enum<SccPhaseMasterCompute.Phases>
Enum Constant and Description |
---|
BACKWARD_TRAVERSAL_REST |
BACKWARD_TRAVERSAL_START
Vertex convergence in SCC
|
FORWARD_TRAVERSAL
Maximum id propagation
|
TRANSPOSE
Tranpose and Trimming phases
|
TRIMMING |
Modifier and Type | Method and Description |
---|---|
static SccPhaseMasterCompute.Phases |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SccPhaseMasterCompute.Phases[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SccPhaseMasterCompute.Phases TRANSPOSE
public static final SccPhaseMasterCompute.Phases TRIMMING
public static final SccPhaseMasterCompute.Phases FORWARD_TRAVERSAL
public static final SccPhaseMasterCompute.Phases BACKWARD_TRAVERSAL_START
public static final SccPhaseMasterCompute.Phases BACKWARD_TRAVERSAL_REST
public static SccPhaseMasterCompute.Phases[] values()
for (SccPhaseMasterCompute.Phases c : SccPhaseMasterCompute.Phases.values()) System.out.println(c);
public static SccPhaseMasterCompute.Phases 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 © 2011-2020 The Apache Software Foundation. All Rights Reserved.