Uses of Class
org.neo4j.cypherdsl.core.Parameter
-
Packages that use Parameter Package Description org.neo4j.cypherdsl.core Contains an internal DSL for creating Cypher.org.neo4j.cypherdsl.core.internal This is basically the kitchen sink for all classes that must be public but are not actually part of the public API. -
-
Uses of Parameter in org.neo4j.cypherdsl.core
Methods in org.neo4j.cypherdsl.core that return Parameter Modifier and Type Method Description static <T> @NotNull Parameter<T>Cypher. anonParameter(T value)Creates a new anonymous parameter with a value bound to it.static @NotNull Parameter<java.lang.Object>Cypher. parameter(java.lang.String name)Creates a new parameter placeholder.static <T> @NotNull Parameter<T>Cypher. parameter(java.lang.String name, T value)Creates a new parameter with the givennameand a value bound to it.ParameterParameter. withValue(java.lang.Object newValue)Methods in org.neo4j.cypherdsl.core with parameters of type Parameter Modifier and Type Method Description @NotNull OperationPropertyContainer. mutate(Parameter<?> parameter)Creates anOperationmutating the properties of this container to a new value.static @NotNull FunctionInvocationFunctions. point(Parameter<?> parameter)Creates a function invocation for thepoint()function. -
Uses of Parameter in org.neo4j.cypherdsl.core.internal
Methods in org.neo4j.cypherdsl.core.internal with parameters of type Parameter Modifier and Type Method Description java.lang.StringStatementContext. getParameterName(Parameter<?> parameter)Gets or creates the name of a parameter
-