|
Spring Data Graph | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Property in org.springframework.data.graph.core |
---|
Methods in org.springframework.data.graph.core that return Property | |
---|---|
static Property[] |
Property._(Map<String,Object> properties)
|
static Property[] |
Property._(Object... nameValuePairs)
|
static Property |
Property._(String name,
Object value)
|
static Property[] |
Property._(String name1,
Object value1,
String name2,
Object value2)
|
static Property[] |
Property._(String name1,
Object value1,
String name2,
Object value2,
String name3,
Object value3)
|
Methods in org.springframework.data.graph.core with parameters of type Property | |
---|---|
org.neo4j.graphdb.Node |
GraphDatabase.createNode(Property... props)
Transactionally creates the node, sets the properties (if any). |
org.neo4j.graphdb.Relationship |
GraphDatabase.createRelationship(org.neo4j.graphdb.Node startNode,
org.neo4j.graphdb.Node endNode,
org.neo4j.graphdb.RelationshipType type,
Property... props)
Transactionally creates the relationship, sets the properties (if any) and indexes the given fielss (if any) Two shortcut means of providing the properties (very short with static imports) graphDatabase.createRelationship(from,to,TYPE, PropertyMap. |
Uses of Property in org.springframework.data.graph.neo4j.rest.support |
---|
Methods in org.springframework.data.graph.neo4j.rest.support with parameters of type Property | |
---|---|
org.neo4j.graphdb.Node |
RestGraphDatabase.createNode(Property... props)
|
org.neo4j.graphdb.Relationship |
RestGraphDatabase.createRelationship(org.neo4j.graphdb.Node startNode,
org.neo4j.graphdb.Node endNode,
org.neo4j.graphdb.RelationshipType type,
Property... props)
|
Uses of Property in org.springframework.data.graph.neo4j.support |
---|
Methods in org.springframework.data.graph.neo4j.support with parameters of type Property | |
---|---|
org.neo4j.graphdb.Node |
DelegatingGraphDatabase.createNode(Property... props)
|
org.neo4j.graphdb.Relationship |
DelegatingGraphDatabase.createRelationship(org.neo4j.graphdb.Node startNode,
org.neo4j.graphdb.Node endNode,
org.neo4j.graphdb.RelationshipType type,
Property... props)
|
Uses of Property in org.springframework.data.graph.neo4j.template |
---|
Methods in org.springframework.data.graph.neo4j.template with parameters of type Property | |
---|---|
org.neo4j.graphdb.Node |
Neo4jOperations.createNode(Property... props)
Transactionally creates the node, sets the properties (if any) and indexes the given fields (if any). |
org.neo4j.graphdb.Node |
Neo4jTemplate.createNode(Property... properties)
|
org.neo4j.graphdb.Relationship |
Neo4jOperations.createRelationship(org.neo4j.graphdb.Node startNode,
org.neo4j.graphdb.Node endNode,
org.neo4j.graphdb.RelationshipType type,
Property... props)
Transactionally creates the relationship, sets the properties (if any) and indexes the given fielss (if any) Two shortcut means of providing the properties (very short with static imports) template.createRelationship(from,to,TYPE, Property. |
org.neo4j.graphdb.Relationship |
Neo4jTemplate.createRelationship(org.neo4j.graphdb.Node startNode,
org.neo4j.graphdb.Node endNode,
org.neo4j.graphdb.RelationshipType relationshipType,
Property... properties)
|
|
Spring Data Graph | |||||||||
PREV NEXT | FRAMES NO FRAMES |