| 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.util |
Contains utility classes.
|
| Modifier and Type | Method and Description |
|---|---|
GradoopId |
EPGMIdentifiable.getId()
Returns the identifier of that entity.
|
GradoopId |
EPGMEdge.getSourceId()
Returns the source vertex identifier.
|
GradoopId |
EPGMEdge.getTargetId()
Returns the target vertex identifier.
|
| Modifier and Type | Method and Description |
|---|---|
void |
EPGMGraphElement.addGraphId(GradoopId graphId)
Adds that element to the given graphId.
|
E |
EPGMEdgeFactory.createEdge(GradoopId sourceVertexId,
GradoopId targetVertexId)
Creates a new edge based on the given parameters.
|
E |
EPGMEdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId)
Creates a new edge based on the given parameters.
|
E |
EPGMEdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
GradoopIdSet graphIds)
Creates a new edge based on the given parameters.
|
E |
EPGMEdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties)
Creates a new edge based on the given parameters.
|
E |
EPGMEdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties,
GradoopIdSet graphIds)
Creates a new edge based on the given parameters.
|
E |
EPGMEdgeFactory.initEdge(GradoopId id,
GradoopId sourceVertexId,
GradoopId targetVertexId)
Initializes an edge based on the given parameters.
|
E |
EPGMEdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId)
Initializes an edge based on the given parameters.
|
E |
EPGMEdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
GradoopIdSet graphIds)
Initializes an edge based on the given parameters.
|
E |
EPGMEdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties)
Initializes an edge based on the given parameters.
|
E |
EPGMEdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties,
GradoopIdSet graphIds)
Initializes an edge based on the given parameters.
|
G |
EPGMGraphHeadFactory.initGraphHead(GradoopId id)
Initializes a graph head based on the given parameters.
|
G |
EPGMGraphHeadFactory.initGraphHead(GradoopId id,
String label)
Initializes a graph head based on the given parameters.
|
G |
EPGMGraphHeadFactory.initGraphHead(GradoopId id,
String label,
Properties properties)
Initializes a graph head based on the given parameters.
|
V |
EPGMVertexFactory.initVertex(GradoopId id)
Initializes a vertex based on the given parameters.
|
V |
EPGMVertexFactory.initVertex(GradoopId id,
String label)
Initializes a vertex based on the given parameters.
|
V |
EPGMVertexFactory.initVertex(GradoopId id,
String label,
GradoopIdSet graphIds)
Initializes a vertex based on the given parameters.
|
V |
EPGMVertexFactory.initVertex(GradoopId id,
String label,
Properties properties)
Initializes a vertex based on the given parameters.
|
V |
EPGMVertexFactory.initVertex(GradoopId id,
String label,
Properties properties,
GradoopIdSet graphIds)
Initializes a vertex based on the given parameters.
|
void |
EPGMIdentifiable.setId(GradoopId id)
Sets the identifier of that entity.
|
void |
EPGMEdge.setSourceId(GradoopId sourceId)
Sets the source vertex identifier.
|
void |
EPGMEdge.setTargetId(GradoopId targetId)
Sets the target vertex identifier.
|
| Modifier and Type | Field and Description |
|---|---|
static GradoopId |
GradoopId.MAX_VALUE
Highest possible Gradoop Id.
|
static GradoopId |
GradoopId.MIN_VALUE
Lowest possible Gradoop Id.
|
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 o)
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 |
Element.id
Entity identifier.
|
| Modifier and Type | Method and Description |
|---|---|
GradoopId |
Element.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.
|
Edge |
EdgeFactory.createEdge(GradoopId sourceVertexId,
GradoopId targetVertexId)
Creates a new edge based on the given parameters.
|
Edge |
EdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId)
Creates a new edge based on the given parameters.
|
Edge |
EdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
GradoopIdSet graphIds)
Creates a new edge based on the given parameters.
|
Edge |
EdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties)
Creates a new edge based on the given parameters.
|
Edge |
EdgeFactory.createEdge(String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties,
GradoopIdSet graphIds)
Creates a new edge based on the given parameters.
|
Edge |
EdgeFactory.initEdge(GradoopId id,
GradoopId sourceVertexId,
GradoopId targetVertexId)
Initializes an edge based on the given parameters.
|
Edge |
EdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId)
Initializes an edge based on the given parameters.
|
Edge |
EdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
GradoopIdSet graphs)
Initializes an edge based on the given parameters.
|
Edge |
EdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties)
Initializes an edge based on the given parameters.
|
Edge |
EdgeFactory.initEdge(GradoopId id,
String label,
GradoopId sourceVertexId,
GradoopId targetVertexId,
Properties properties,
GradoopIdSet graphIds)
Initializes an edge based on the given parameters.
|
GraphHead |
GraphHeadFactory.initGraphHead(GradoopId id)
Initializes a graph head based on the given parameters.
|
GraphHead |
GraphHeadFactory.initGraphHead(GradoopId id,
String label)
Initializes a graph head based on the given parameters.
|
GraphHead |
GraphHeadFactory.initGraphHead(GradoopId id,
String label,
Properties properties)
Initializes a graph head based on the given parameters.
|
Vertex |
VertexFactory.initVertex(GradoopId vertexID)
Initializes a vertex based on the given parameters.
|
Vertex |
VertexFactory.initVertex(GradoopId vertexID,
String label)
Initializes a vertex based on the given parameters.
|
Vertex |
VertexFactory.initVertex(GradoopId vertexID,
String label,
GradoopIdSet graphs)
Initializes a vertex based on the given parameters.
|
Vertex |
VertexFactory.initVertex(GradoopId vertexID,
String label,
Properties properties)
Initializes a vertex based on the given parameters.
|
Vertex |
VertexFactory.initVertex(GradoopId id,
String label,
Properties properties,
GradoopIdSet graphs)
Initializes a vertex based on the given parameters.
|
void |
Element.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.
|
| Constructor and Description |
|---|
Edge(GradoopId id,
String label,
GradoopId sourceId,
GradoopId targetId,
Properties properties,
GradoopIdSet graphIds)
Creates an edge instance based on the given parameters.
|
Element(GradoopId id,
String label,
Properties properties)
Creates an object from the given parameters.
|
GraphElement(GradoopId id,
String label,
Properties properties,
GradoopIdSet graphIds)
Creates an EPGM graph element using the given arguments.
|
GraphHead(GradoopId id,
String label,
Properties properties)
Creates a graph head based on the given parameters.
|
Vertex(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 | Field and Description |
|---|---|
static GradoopId |
GradoopConstants.DB_GRAPH_ID
Static identifier for the database graph.
|
Copyright © 2014 - 2018–2018 University of Leipzig. All rights reserved.