public enum GraphAlgorithmType extends Enum<GraphAlgorithmType>
| Enum Constant and Description |
|---|
bfs |
lcc |
lp |
mssp |
pagerank |
sssp |
wcc |
| Modifier and Type | Method and Description |
|---|---|
static GraphAlgorithmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphAlgorithmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphAlgorithmType bfs
public static final GraphAlgorithmType lcc
public static final GraphAlgorithmType lp
public static final GraphAlgorithmType mssp
public static final GraphAlgorithmType pagerank
public static final GraphAlgorithmType sssp
public static final GraphAlgorithmType wcc
public static GraphAlgorithmType[] values()
for (GraphAlgorithmType c : GraphAlgorithmType.values()) System.out.println(c);
public static GraphAlgorithmType 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 © 2018. All rights reserved.