public static enum IdPropertyKey.Type extends java.lang.Enum<IdPropertyKey.Type>
| Enum Constant and Description |
|---|
Clustering
Property key is part of the clustering key for a vertex instance.
|
Partition
Property key is part of the partition key for a vertex instance.
|
Routing
Property key is part of the routing key for a vertex instance.
|
| Modifier and Type | Method and Description |
|---|---|
static IdPropertyKey.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IdPropertyKey.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdPropertyKey.Type Routing
public static final IdPropertyKey.Type Partition
public static final IdPropertyKey.Type Clustering
public static IdPropertyKey.Type[] values()
for (IdPropertyKey.Type c : IdPropertyKey.Type.values()) System.out.println(c);
public static IdPropertyKey.Type 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 null