| Package | Description |
|---|---|
| org.gradoop.common.model.api.entities |
Contains all interfaces defining the Extended EPGMProperty Graph model.
|
| org.gradoop.common.model.impl.id |
Contains all classes for id handling in Gradoop.
|
| org.gradoop.common.model.impl.pojo |
Contains a default POJO implementation of EPGM entities.
|
| org.gradoop.common.model.impl.properties |
Contains classes for property handling in Gradoop.
|
| org.gradoop.common.model.impl.properties.strategies |
Contains classes that implement the
PropertyValueStrategy interface as well as their
factory and utility classes. |
| org.gradoop.common.util |
Contains utility classes.
|
| Modifier and Type | Method and Description |
|---|---|
GradoopId |
Identifiable.getId()
Returns the identifier of that entity.
|
GradoopId |
Edge.getSourceId()
Returns the source vertex identifier.
|
GradoopId |
Edge.getTargetId()
Returns the target vertex identifier.
|
| Modifier and Type | Method and Description |
|---|---|
void |
GraphElement.addGraphId(GradoopId graphId)
Adds that element to the given graphId.
|
E |
EdgeFactory.createEdge(GradoopId sourceVertexId,
GradoopId targetVertexId)
Creates a new edge based on the given parameters.
|
E |
EdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId)
Creates a new edge based on the given parameters.
|
E |
EdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
GradoopIdSet graphIds)
Creates a new edge based on the given parameters.
|
E |
EdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties)
Creates a new edge based on the given parameters.
|
E |
EdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties,
GradoopIdSet graphIds)
Creates a new edge based on the given parameters.
|
E |
EdgeFactory.initEdge(GradoopId id,
GradoopId sourceVertexId,
GradoopId targetVertexId)
Initializes an edge based on the given parameters.
|
E |
EdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId)
Initializes an edge based on the given parameters.
|
E |
EdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
GradoopIdSet graphIds)
Initializes an edge based on the given parameters.
|
E |
EdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties)
Initializes an edge based on the given parameters.
|
E |
EdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties,
GradoopIdSet graphIds)
Initializes an edge based on the given parameters.
|
G |
GraphHeadFactory.initGraphHead(GradoopId id)
Initializes a graph head based on the given parameters.
|
G |
GraphHeadFactory.initGraphHead(GradoopId id,
String label)
Initializes a graph head based on the given parameters.
|
G |
GraphHeadFactory.initGraphHead(GradoopId id,
String label,
Properties properties)
Initializes a graph head based on the given parameters.
|
V |
VertexFactory.initVertex(GradoopId id)
Initializes a vertex based on the given parameters.
|
V |
VertexFactory.initVertex(GradoopId id,
String label)
Initializes a vertex based on the given parameters.
|
V |
VertexFactory.initVertex(GradoopId id,
String label,
GradoopIdSet graphIds)
Initializes a vertex based on the given parameters.
|
V |
VertexFactory.initVertex(GradoopId id,
String label,
Properties properties)
Initializes a vertex based on the given parameters.
|
V |
VertexFactory.initVertex(GradoopId id,
String label,
Properties properties,
GradoopIdSet graphIds)
Initializes a vertex based on the given parameters.
|
void |
Identifiable.setId(GradoopId id)
Sets the identifier of that entity.
|
void |
Edge.setSourceId(GradoopId sourceId)
Sets the source vertex identifier.
|
void |
Edge.setTargetId(GradoopId targetId)
Sets the target vertex identifier.
|
| Modifier and Type | Field and Description |
|---|---|
static GradoopId |
GradoopId.NULL_VALUE
Represents a null id.
|
| Modifier and Type | Method and Description |
|---|---|
GradoopId |
GradoopId.copy() |
static GradoopId |
GradoopId.fromByteArray(byte[] bytes)
Returns the Gradoop ID represented by a byte array
|
static GradoopId |
GradoopId.fromString(String string)
Returns the Gradoop ID represented by a specified hexadecimal string.
|
static GradoopId |
GradoopId.get()
Returns a new GradoopId
|
static GradoopId |
GradoopId.min(GradoopId first,
GradoopId second)
Compares the given GradoopIds and returns the smaller one.
|
| Modifier and Type | Method and Description |
|---|---|
Iterator<GradoopId> |
GradoopIdSet.iterator() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
GradoopIdSet.add(GradoopId id)
Adds the given gradoop id to the set.
|
int |
GradoopId.compareTo(GradoopId other)
Performs a byte-wise comparison of this and the specified GradoopId.
|
void |
GradoopId.copyTo(GradoopId target) |
static GradoopIdSet |
GradoopIdSet.fromExisting(GradoopId... ids)
Creates a new instance from multiple GradoopIDs.
|
static GradoopId |
GradoopId.min(GradoopId first,
GradoopId second)
Compares the given GradoopIds and returns the smaller one.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
GradoopIdSet.addAll(Collection<? extends GradoopId> ids)
Adds the given gradoop ids to the set.
|
boolean |
GradoopIdSet.containsAny(Set<GradoopId> other)
Checks if any of the specified ids is contained in the set.
|
static GradoopIdSet |
GradoopIdSet.fromExisting(Collection<GradoopId> ids)
Creates a new instance from multiple GradoopIDs.
|
| Modifier and Type | Field and Description |
|---|---|
protected GradoopId |
EPGMElement.id
Entity identifier.
|
| Modifier and Type | Method and Description |
|---|---|
GradoopId |
EPGMElement.getId() |
GradoopId |
EPGMEdge.getSourceId() |
GradoopId |
EPGMEdge.getTargetId() |
| Modifier and Type | Method and Description |
|---|---|
void |
EPGMGraphElement.addGraphId(GradoopId graphId) |
EPGMEdge |
EPGMEdgeFactory.createEdge(GradoopId sourceVertexId,
GradoopId targetVertexId) |
EPGMEdge |
EPGMEdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId) |
EPGMEdge |
EPGMEdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
GradoopIdSet graphIds) |
EPGMEdge |
EPGMEdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties) |
EPGMEdge |
EPGMEdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties,
GradoopIdSet graphIds) |
EPGMEdge |
EPGMEdgeFactory.initEdge(GradoopId id,
GradoopId sourceVertexId,
GradoopId targetVertexId) |
EPGMEdge |
EPGMEdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId) |
EPGMEdge |
EPGMEdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
GradoopIdSet graphs) |
EPGMEdge |
EPGMEdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties) |
EPGMEdge |
EPGMEdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties,
GradoopIdSet graphIds) |
EPGMGraphHead |
EPGMGraphHeadFactory.initGraphHead(GradoopId id) |
EPGMGraphHead |
EPGMGraphHeadFactory.initGraphHead(GradoopId id,
String label) |
EPGMGraphHead |
EPGMGraphHeadFactory.initGraphHead(GradoopId id,
String label,
Properties properties) |
EPGMVertex |
EPGMVertexFactory.initVertex(GradoopId vertexID) |
EPGMVertex |
EPGMVertexFactory.initVertex(GradoopId vertexID,
String label) |
EPGMVertex |
EPGMVertexFactory.initVertex(GradoopId vertexID,
String label,
GradoopIdSet graphs) |
EPGMVertex |
EPGMVertexFactory.initVertex(GradoopId vertexID,
String label,
Properties properties) |
EPGMVertex |
EPGMVertexFactory.initVertex(GradoopId id,
String label,
Properties properties,
GradoopIdSet graphs) |
void |
EPGMElement.setId(GradoopId id) |
void |
EPGMEdge.setSourceId(GradoopId sourceId) |
void |
EPGMEdge.setTargetId(GradoopId targetId) |
| Constructor and Description |
|---|
EPGMEdge(GradoopId id,
String label,
GradoopId sourceId,
GradoopId targetId,
Properties properties,
GradoopIdSet graphIds)
Creates an edge instance based on the given parameters.
|
EPGMElement(GradoopId id,
String label,
Properties properties)
Creates an object from the given parameters.
|
EPGMGraphElement(GradoopId id,
String label,
Properties properties,
GradoopIdSet graphIds)
Creates an EPGM graph element using the given arguments.
|
EPGMGraphHead(GradoopId id,
String label,
Properties properties)
Creates a graph head based on the given parameters.
|
EPGMVertex(GradoopId id,
String label,
Properties properties,
GradoopIdSet graphs)
Creates a vertex based on the given parameters.
|
| Modifier and Type | Method and Description |
|---|---|
GradoopId |
PropertyValue.getGradoopId()
Returns the wrapped value as
GradoopId. |
| Modifier and Type | Method and Description |
|---|---|
void |
PropertyValue.setGradoopId(GradoopId gradoopIdValue)
Sets the wrapped value as
GradoopId value. |
| Modifier and Type | Method and Description |
|---|---|
GradoopId |
GradoopIdStrategy.get(byte[] bytes) |
GradoopId |
GradoopIdStrategy.read(org.apache.flink.core.memory.DataInputView inputView,
byte typeByte) |
| Modifier and Type | Method and Description |
|---|---|
Class<GradoopId> |
GradoopIdStrategy.getType() |
| Modifier and Type | Method and Description |
|---|---|
int |
GradoopIdStrategy.compare(GradoopId value,
Object other) |
byte[] |
GradoopIdStrategy.getRawBytes(GradoopId value) |
| Modifier and Type | Field and Description |
|---|---|
static GradoopId |
GradoopConstants.DB_GRAPH_ID
Static identifier for the database graph.
|
Copyright © 2014 - 2019–2019 University of Leipzig. All rights reserved.