Class VertexComputeKey
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.computer.VertexComputeKey
-
- All Implemented Interfaces:
Serializable
public final class VertexComputeKey extends Object implements Serializable
AVertexComputeKey
specifies a property of a vertex that will be used to storeGraphComputer
data. If the VertexComputeKey is specified as transient, it will be dropped from the vertex prior to returning theComputerResult
graph.- Author:
- Marko A. Rodriguez (http://markorodriguez.com)
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
String
getKey()
int
hashCode()
boolean
isTransient()
static VertexComputeKey
of(String key, boolean isTransient)
-
-
-
Method Detail
-
getKey
public String getKey()
-
isTransient
public boolean isTransient()
-
of
public static VertexComputeKey of(String key, boolean isTransient)
-
-