public enum ModelKind extends java.lang.Enum<ModelKind>
| Enum Constant and Description |
|---|
DEEPWALK |
PG2VEC |
SUPERVISED_EDGEWISE |
SUPERVISED_GRAPHWISE |
UNSUPERVISED_EDGEWISE |
UNSUPERVISED_GRAPHWISE |
| Modifier and Type | Method and Description |
|---|---|
static ModelKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModelKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelKind DEEPWALK
public static final ModelKind PG2VEC
public static final ModelKind SUPERVISED_EDGEWISE
public static final ModelKind SUPERVISED_GRAPHWISE
public static final ModelKind UNSUPERVISED_EDGEWISE
public static final ModelKind UNSUPERVISED_GRAPHWISE
public static ModelKind valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ModelKind[] values()
for (ModelKind c : ModelKind.values()) System.out.println(c);