@Deprecated public enum WalkMode extends Enum<WalkMode>
| Enum Constant and Description |
|---|
POPULARITY
Deprecated.
|
RANDOM
Deprecated.
|
WEIGHTED
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static WalkMode |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static WalkMode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WalkMode RANDOM
public static final WalkMode WEIGHTED
public static final WalkMode POPULARITY
public static WalkMode[] values()
for (WalkMode c : WalkMode.values()) System.out.println(c);
public static WalkMode 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.