Uses of Interface
org.neo4j.cypherdsl.core.PatternElement
-
Packages that use PatternElement Package Description org.neo4j.cypherdsl.core Contains an internal DSL for creating Cypher. -
-
Uses of PatternElement in org.neo4j.cypherdsl.core
Subinterfaces of PatternElement in org.neo4j.cypherdsl.core Modifier and Type Interface Description interfaceNodeSee NodePattern.interfaceRelationshipSee RelationshipPattern.interfaceRelationshipPatternA shared, public interface forrelationshipsandchains of relationships.Classes in org.neo4j.cypherdsl.core that implement PatternElement Modifier and Type Class Description classNamedPathRepresents a named path.classNodeBase<SELF extends Node>This is the base class for all nodes.classRelationshipBase<S extends NodeBase<?>,E extends NodeBase<?>,SELF extends RelationshipBase<S,E,SELF>>This is the base class for all relationships.classRelationshipChainRepresents a chain of relationships.Methods in org.neo4j.cypherdsl.core with parameters of type PatternElement Modifier and Type Method Description static StatementBuilder.OngoingUpdateCypher. create(PatternElement... pattern)Starts building a statement based on aCREATEclause.StatementBuilder.OngoingUpdateExposesCreate. create(PatternElement... pattern)static FunctionInvocationFunctionInvocation. create(FunctionInvocation.FunctionDefinition definition, PatternElement pattern)Creates a new function invocation for a pattern element.@NotNull NamedPathNamedPath.OngoingDefinitionWithName. definedBy(PatternElement patternElement)Create a new named path based on aPatternElementsingle node.static StatementBuilder.OngoingReadingWithoutWhereCypher. match(boolean optional, PatternElement... pattern)Starts building a statement based on a match clause.static StatementBuilder.OngoingReadingWithoutWhereCypher. match(PatternElement... pattern)Starts building a statement based on a match clause.StatementBuilder.OngoingReadingWithoutWhereExposesMatch. match(boolean optional, PatternElement... pattern)Adds (another)MATCHclause.default StatementBuilder.OngoingReadingWithoutWhereExposesMatch. match(PatternElement... pattern)Adds (another)MATCHclause.static StatementBuilder.OngoingMergeCypher. merge(PatternElement... pattern)Starts building a statement based on aMERGEclause.StatementBuilder.OngoingMergeExposesMerge. merge(PatternElement... pattern)static StatementBuilder.OngoingReadingWithoutWhereCypher. optionalMatch(PatternElement... pattern)Prepares an optional match statement.default StatementBuilder.OngoingReadingWithoutWhereExposesMatch. optionalMatch(PatternElement... pattern)Adds (another) optionalMATCHclause.Method parameters in org.neo4j.cypherdsl.core with type arguments of type PatternElement Modifier and Type Method Description static StatementBuilder.OngoingUpdateCypher. create(java.util.Collection<PatternElement> pattern)Starts building a statement based on aCREATEclause.StatementBuilder.OngoingUpdateExposesCreate. create(java.util.Collection<PatternElement> pattern)static StatementBuilder.OngoingReadingWithoutWhereCypher. match(boolean optional, java.util.Collection<PatternElement> pattern)Starts building a statement based on a match clause.static StatementBuilder.OngoingReadingWithoutWhereCypher. match(java.util.Collection<PatternElement> pattern)Starts building a statement based on a match clause.default StatementBuilder.OngoingReadingWithoutWhereExposesMatch. match(java.util.Collection<PatternElement> pattern)Adds (another)MATCHclause.static StatementBuilder.OngoingMergeCypher. merge(java.util.Collection<PatternElement> pattern)Starts building a statement based on aMERGEclause.static StatementBuilder.OngoingReadingWithoutWhereCypher. optionalMatch(java.util.Collection<PatternElement> pattern)Prepares an optional match statement.default StatementBuilder.OngoingReadingWithoutWhereExposesMatch. optionalMatch(java.util.Collection<PatternElement> pattern)Adds (another) optionalMATCHclause.
-