Uses of Interface
org.neo4j.driver.Value
Packages that use Value
Package
Description
-
Uses of Value in org.neo4j.driver
Fields in org.neo4j.driver declared as ValueModifier and TypeFieldDescriptionstatic final ValueValues.EmptyMapThe value instance of an empty map.static final ValueValues.NULLThe value instance ofNULL.Methods in org.neo4j.driver that return ValueModifier and TypeMethodDescriptionRecord.get(int index) Retrieve the value at the given field indexValue.get(int index) Retrieve the value at the given indexstatic ValueValues.isoDuration(long months, long days, long seconds, int nanoseconds) Returns a value from month, day, seconds and nanoseconds values.Query.parameters()static ValueValues.parameters(Object... keysAndValues) Helper function for creating a map of parameters, this can be used when yourunqueries.static ValueValues.point(int srid, double x, double y) Returns a value from SRID, x and y values.static ValueValues.point(int srid, double x, double y, double z) Returns a value from SRID, x ,y and z values.static ValueValues.value(boolean val) Returns a value from boolean.static ValueValues.value(boolean... input) Returns a value from boolean vararg.static ValueValues.value(byte... input) Returns a value from byte vararg.static ValueValues.value(char val) Returns a value from char.static ValueValues.value(char... input) Returns a value from char vararg.static ValueValues.value(double val) Returns a value from double.static ValueValues.value(double... input) Returns a value from double vararg.static ValueValues.value(float... input) Returns a value from float vararg.static ValueValues.value(int val) Returns a value from int.static ValueValues.value(int... input) Returns a value from int vararg.static ValueValues.value(long val) Returns a value from long.static ValueValues.value(long... input) Returns a value from long vararg.static ValueValues.value(short... input) Returns a value from short vararg.static ValueReturns a value from iterable of objects.static ValueReturns a value from object.static ValueReturns a value from string.static ValueReturns a value from string vararg.static ValueReturns a value from duration.static ValueReturns a value from local date.static ValueValues.value(LocalDateTime localDateTime) Returns a value from local date time.static ValueReturns a value from local time.static ValueValues.value(OffsetDateTime offsetDateTime) Returns a value from offset date time.static ValueValues.value(OffsetTime offsetTime) Returns a value from offset time.static ValueReturns a value from period.static ValueValues.value(ZonedDateTime zonedDateTime) Returns a value from zoned date time.static ValueReturns a value from iterator of objects.static ValueReturns a value from list of objects.static ValueReturns a value from string to object map.static ValueReturns a value from stream of objects.static ValueReturns a value from value vararg.static Value[]Returns an array of values from object vararg.Methods in org.neo4j.driver that return types with arguments of type ValueModifier and TypeMethodDescriptionRecords.column(int index) Returns a function mapping record to a value from a given index.Returns a function mapping record to a value from a given key.Record.fields()Retrieve all record fieldsTransactionConfig.metadata()Get the configured transaction metadata.Values.ofBoolean()Converts values toBoolean.Values.ofDouble()Converts values toDouble.Values.ofEntity()Converts values toEntity.Values.ofEntityElementId()Converts values toelement id.Values.ofEntityId()Deprecated.Values.ofFloat()Converts values toFloat.Values.ofInteger()Converts values toInteger.static Function<Value,IsoDuration> Values.ofIsoDuration()Converts values toIsoDuration.Values.ofList()Converts values toListofT.Values.ofLocalDate()Converts values toLocalDate.static Function<Value,LocalDateTime> Values.ofLocalDateTime()Converts values toLocalDateTime.Values.ofLocalTime()Converts values toLocalTime.Values.ofLong()Converts values toLong.Values.ofMap()Converts values toMap.Converts values toMap, with the map values further converted using the provided converter.Values.ofNode()Converts values toNode.Values.ofNumber()Converts values toNumber.Values.ofObject()Converts values to objects usingasObject().static Function<Value,OffsetDateTime> Values.ofOffsetDateTime()Converts values toOffsetDateTime.static Function<Value,OffsetTime> Values.ofOffsetTime()Converts values toOffsetTime.Values.ofPath()Converts values toPath.Values.ofPoint()Converts values toPoint.static Function<Value,Relationship> Values.ofRelationship()Converts values toRelationship.Values.ofString()Converts values toString.Values.ofToString()Converts values usingtoString(), a human-readable string description of any value.Values.ofValue()The identity function for value conversion - returns the value untouched.Values.ofValue()The identity function for value conversion - returns the value untouched.static Function<Value,ZonedDateTime> Values.ofZonedDateTime()Converts values toZonedDateTime.Record.values()Retrieve the values of the underlying mapMethods in org.neo4j.driver with parameters of type ValueModifier and TypeMethodDescriptionRun a query and return a result stream.static ValueReturns a value from value vararg.Query.withParameters(Value newParameters) Query.withUpdatedParameters(Value updates) Create a new query with new parameters derived by updating this' query's parameters using the given updates.Method parameters in org.neo4j.driver with type arguments of type ValueModifier and TypeMethodDescription<T> List<T><T> List<T>Returns a function mapping record to a value of a target type from a given index.Returns a function mapping record to a value of a target type from a given key.<T> TValue.computeOrDefault(Function<Value, T> mapper, T defaultValue) Converts values toListofT.Converts values toMap, with the map values further converted using the provided converter.Constructors in org.neo4j.driver with parameters of type Value -
Uses of Value in org.neo4j.driver.async
Methods in org.neo4j.driver.async with parameters of type ValueModifier and TypeMethodDescriptionRun a query asynchronously and return aCompletionStagewith a result cursor. -
Uses of Value in org.neo4j.driver.exceptions
Methods in org.neo4j.driver.exceptions that return types with arguments of type ValueModifier and TypeMethodDescriptionNeo4jException.diagnosticRecord()Returns the GQL diagnostic record.Constructor parameters in org.neo4j.driver.exceptions with type arguments of type ValueModifierConstructorDescriptionAuthenticationException(String gqlStatus, String statusDescription, String code, String message, Map<String, Value> diagnosticRecord, Throwable cause) Creates a new instance.AuthorizationExpiredException(String gqlStatus, String statusDescription, String code, String message, Map<String, Value> diagnosticRecord, Throwable cause) Creates a new instance.ClientException(String gqlStatus, String statusDescription, String code, String message, Map<String, Value> diagnosticRecord, Throwable cause) Creates a new instance.DatabaseException(String gqlStatus, String statusDescription, String code, String message, Map<String, Value> diagnosticRecord, Throwable cause) Creates a new instance.FatalDiscoveryException(String gqlStatus, String statusDescription, String code, String message, Map<String, Value> diagnosticRecord, Throwable cause) Creates a new instance.Neo4jException(String gqlStatus, String statusDescription, String code, String message, Map<String, Value> diagnosticRecord, Throwable cause) Creates a new instance.SecurityException(String gqlStatus, String statusDescription, String code, String message, Map<String, Value> diagnosticRecord, Throwable cause) Creates a new instance.TokenExpiredException(String gqlStatus, String statusDescription, String code, String message, Map<String, Value> diagnosticRecord, Throwable cause) Creates a new instance.TransactionTerminatedException(String gqlStatus, String statusDescription, String code, String message, Map<String, Value> diagnosticRecord, Throwable cause) Creates a new instance.TransientException(String gqlStatus, String statusDescription, String code, String message, Map<String, Value> diagnosticRecord, Throwable cause) Creates a new instance. -
Uses of Value in org.neo4j.driver.internal.async
Methods in org.neo4j.driver.internal.async with parameters of type ValueMethod parameters in org.neo4j.driver.internal.async with type arguments of type ValueModifier and TypeMethodDescriptionBoltConnectionWithAuthTokenManager.beginTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, TransactionType transactionType, Duration txTimeout, Map<String, Value> txMetadata, String txType, NotificationConfig notificationConfig) TerminationAwareBoltConnection.beginTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, TransactionType transactionType, Duration txTimeout, Map<String, Value> txMetadata, String txType, NotificationConfig notificationConfig) BoltConnectionWithAuthTokenManager.runInAutoCommitTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, String query, Map<String, Value> parameters, Duration txTimeout, Map<String, Value> txMetadata, NotificationConfig notificationConfig) TerminationAwareBoltConnection.runInAutoCommitTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, String query, Map<String, Value> parameters, Duration txTimeout, Map<String, Value> txMetadata, NotificationConfig notificationConfig) -
Uses of Value in org.neo4j.driver.internal.bolt.api
Fields in org.neo4j.driver.internal.bolt.api with type parameters of type ValueMethods in org.neo4j.driver.internal.bolt.api that return types with arguments of type ValueModifier and TypeMethodDescriptionAuthData.authMap()GqlError.diagnosticRecord()Returns the value of thediagnosticRecordrecord component.Methods in org.neo4j.driver.internal.bolt.api with parameters of type ValueModifier and TypeMethodDescriptionvoiddefault voidMethod parameters in org.neo4j.driver.internal.bolt.api with type arguments of type ValueModifier and TypeMethodDescriptionBoltConnection.beginTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, TransactionType transactionType, Duration txTimeout, Map<String, Value> txMetadata, String txType, NotificationConfig notificationConfig) BoltConnectionProvider.connect(SecurityPlan securityPlan, DatabaseName databaseName, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, AccessMode mode, Set<String> bookmarks, String impersonatedUser, BoltProtocolVersion minVersion, NotificationConfig notificationConfig, Consumer<DatabaseName> databaseNameConsumer) BoltConnection.runInAutoCommitTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, String query, Map<String, Value> parameters, Duration txTimeout, Map<String, Value> txMetadata, NotificationConfig notificationConfig) BoltConnectionProvider.supportsMultiDb(SecurityPlan securityPlan, Map<String, Value> authMap) BoltConnectionProvider.supportsSessionAuth(SecurityPlan securityPlan, Map<String, Value> authMap) BoltConnectionProvider.verifyConnectivity(SecurityPlan securityPlan, Map<String, Value> authMap) Constructor parameters in org.neo4j.driver.internal.bolt.api with type arguments of type Value -
Uses of Value in org.neo4j.driver.internal.bolt.api.summary
Methods in org.neo4j.driver.internal.bolt.api.summary that return types with arguments of type Value -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl
Method parameters in org.neo4j.driver.internal.bolt.basicimpl with type arguments of type ValueModifier and TypeMethodDescriptionConnectionProvider.acquireConnection(BoltServerAddress address, SecurityPlan securityPlan, RoutingContext routingContext, String databaseName, Map<String, Value> authMap, BoltAgent boltAgent, String userAgent, AccessMode mode, int connectTimeoutMillis, String impersonatedUser, CompletableFuture<Long> latestAuthMillisFuture, NotificationConfig notificationConfig, MetricsListener metricsListener) NettyConnectionProvider.acquireConnection(BoltServerAddress address, SecurityPlan securityPlan, RoutingContext routingContext, String databaseName, Map<String, Value> authMap, BoltAgent boltAgent, String userAgent, AccessMode mode, int connectTimeoutMillis, String impersonatedUser, CompletableFuture<Long> latestAuthMillisFuture, NotificationConfig notificationConfig, MetricsListener metricsListener) BoltConnectionImpl.beginTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, TransactionType transactionType, Duration txTimeout, Map<String, Value> txMetadata, String txType, NotificationConfig notificationConfig) NettyBoltConnectionProvider.connect(SecurityPlan securityPlan, DatabaseName databaseName, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, AccessMode mode, Set<String> bookmarks, String impersonatedUser, BoltProtocolVersion minVersion, NotificationConfig notificationConfig, Consumer<DatabaseName> databaseNameConsumer) BoltConnectionImpl.runInAutoCommitTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, String query, Map<String, Value> parameters, Duration txTimeout, Map<String, Value> txMetadata, NotificationConfig notificationConfig) NettyBoltConnectionProvider.supportsMultiDb(SecurityPlan securityPlan, Map<String, Value> authMap) NettyBoltConnectionProvider.supportsSessionAuth(SecurityPlan securityPlan, Map<String, Value> authMap) NettyBoltConnectionProvider.verifyConnectivity(SecurityPlan securityPlan, Map<String, Value> authMap) Constructor parameters in org.neo4j.driver.internal.bolt.basicimpl with type arguments of type ValueModifierConstructorDescriptionBoltConnectionImpl(BoltProtocol protocol, Connection connection, io.netty.channel.EventLoop eventLoop, Map<String, Value> authMap, CompletableFuture<Long> latestAuthMillisFuture, RoutingContext routingContext, Clock clock, LoggingProvider logging) -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.async.inbound
Methods in org.neo4j.driver.internal.bolt.basicimpl.async.inbound with parameters of type ValueModifier and TypeMethodDescriptionvoidInboundMessageDispatcher.handleRecordMessage(Value[] fields) Method parameters in org.neo4j.driver.internal.bolt.basicimpl.async.inbound with type arguments of type ValueModifier and TypeMethodDescriptionvoidInboundMessageDispatcher.handleSuccessMessage(Map<String, Value> meta) -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.handlers
Methods in org.neo4j.driver.internal.bolt.basicimpl.handlers that return types with arguments of type ValueModifier and TypeMethodDescriptionPullResponseHandlerImpl.PullSummaryImpl.metadata()Returns the value of themetadatarecord component.Methods in org.neo4j.driver.internal.bolt.basicimpl.handlers with parameters of type ValueModifier and TypeMethodDescriptionvoidvoidvoidvoidvoidvoidvoidvoidvoidfinal voidvoidvoidvoidvoidMethod parameters in org.neo4j.driver.internal.bolt.basicimpl.handlers with type arguments of type ValueModifier and TypeMethodDescriptionvoidPullResponseCompletionListener.afterSuccess(Map<String, Value> metadata) voidvoidvoidvoidvoidvoidvoidvoidvoidfinal voidvoidvoidvoidvoidConstructor parameters in org.neo4j.driver.internal.bolt.basicimpl.handlers with type arguments of type ValueModifierConstructorDescriptionPullSummaryImpl(boolean hasMore, Map<String, Value> metadata) Creates an instance of aPullSummaryImplrecord class.RouteMessageResponseHandler(CompletableFuture<Map<String, Value>> completableFuture) -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging
Methods in org.neo4j.driver.internal.bolt.basicimpl.messaging that return ValueMethods in org.neo4j.driver.internal.bolt.basicimpl.messaging that return types with arguments of type ValueMethods in org.neo4j.driver.internal.bolt.basicimpl.messaging with parameters of type ValueModifier and TypeMethodDescriptionvoidResponseMessageHandler.handleRecordMessage(Value[] fields) voidvoidMethod parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging with type arguments of type ValueModifier and TypeMethodDescriptionBoltProtocol.beginTransaction(Connection connection, DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, Duration txTimeout, Map<String, Value> txMetadata, String txType, NotificationConfig notificationConfig, MessageHandler<Void> handler, LoggingProvider logging) voidResponseMessageHandler.handleSuccessMessage(Map<String, Value> meta) CompletionStage<io.netty.channel.Channel>BoltProtocol.initializeChannel(io.netty.channel.Channel channel, String userAgent, BoltAgent boltAgent, Map<String, Value> authMap, RoutingContext routingContext, NotificationConfig notificationConfig, Clock clock, CompletableFuture<Long> latestAuthMillisFuture) default CompletionStage<Void>BoltProtocol.logon(Connection connection, Map<String, Value> authMap, Clock clock, MessageHandler<Void> handler) voidBoltProtocol.route(Connection connection, Map<String, Value> routingContext, Set<String> bookmarks, String databaseName, String impersonatedUser, MessageHandler<RouteSummary> handler, Clock clock, LoggingProvider logging) BoltProtocol.run(Connection connection, String query, Map<String, Value> parameters, MessageHandler<RunSummary> handler) BoltProtocol.runAuto(Connection connection, DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, String query, Map<String, Value> parameters, Set<String> bookmarks, Duration txTimeout, Map<String, Value> txMetadata, NotificationConfig notificationConfig, MessageHandler<RunSummary> handler, LoggingProvider logging) -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging.common
Methods in org.neo4j.driver.internal.bolt.basicimpl.messaging.common that return ValueModifier and TypeMethodDescriptionprotected ValueCommonValueUnpacker.unpack()Value[]CommonValueUnpacker.unpackArray()protected ValueCommonValueUnpacker.unpackPath()protected ValueCommonValueUnpacker.unpackRelationship()Methods in org.neo4j.driver.internal.bolt.basicimpl.messaging.common that return types with arguments of type ValueMethods in org.neo4j.driver.internal.bolt.basicimpl.messaging.common with parameters of type ValueMethod parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.common with type arguments of type Value -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging.request
Methods in org.neo4j.driver.internal.bolt.basicimpl.messaging.request that return types with arguments of type ValueModifier and TypeMethodDescriptionTransactionMetadataBuilder.buildMetadata(Duration txTimeout, Map<String, Value> txMetadata, DatabaseName databaseName, AccessMode mode, Set<String> bookmarks, String impersonatedUser, String txType, NotificationConfig notificationConfig, boolean legacyNotifications, LoggingProvider logging) AbstractStreamingMessage.metadata()RunWithMetadataMessage.parameters()RouteMessage.routingContext()Returns the value of theroutingContextrecord component.Method parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.request with type arguments of type ValueModifier and TypeMethodDescriptionstatic RunWithMetadataMessageRunWithMetadataMessage.autoCommitTxRunMessage(String query, Map<String, Value> parameters, Duration txTimeout, Map<String, Value> txMetadata, DatabaseName databaseName, AccessMode mode, Set<String> bookmarks, String impersonatedUser, NotificationConfig notificationConfig, boolean legacyNotifications, LoggingProvider logging) TransactionMetadataBuilder.buildMetadata(Duration txTimeout, Map<String, Value> txMetadata, DatabaseName databaseName, AccessMode mode, Set<String> bookmarks, String impersonatedUser, String txType, NotificationConfig notificationConfig, boolean legacyNotifications, LoggingProvider logging) static RunWithMetadataMessageRunWithMetadataMessage.unmanagedTxRunMessage(String query, Map<String, Value> parameters) Constructor parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.request with type arguments of type ValueModifierConstructorDescriptionBeginMessage(Set<String> bookmarks, Duration txTimeout, Map<String, Value> txMetadata, AccessMode mode, DatabaseName databaseName, String impersonatedUser, String txType, NotificationConfig notificationConfig, boolean legacyNotifications, LoggingProvider logging) BeginMessage(Set<String> bookmarks, Duration txTimeout, Map<String, Value> txMetadata, DatabaseName databaseName, AccessMode mode, String impersonatedUser, String txType, NotificationConfig notificationConfig, boolean legacyNotifications, LoggingProvider logging) HelloMessage(String userAgent, BoltAgent boltAgent, Map<String, Value> authMap, Map<String, String> routingContext, boolean includeDateTimeUtc, NotificationConfig notificationConfig, boolean legacyNotifications) LogonMessage(Map<String, Value> authMap) RouteMessage(Map<String, Value> routingContext, Set<String> bookmarks, String databaseName, String impersonatedUser) Constructor -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging.response
Methods in org.neo4j.driver.internal.bolt.basicimpl.messaging.response that return ValueModifier and TypeMethodDescriptionValue[]RecordMessage.fields()Returns the value of thefieldsrecord component.Methods in org.neo4j.driver.internal.bolt.basicimpl.messaging.response that return types with arguments of type ValueModifier and TypeMethodDescriptionSuccessMessage.metadata()Returns the value of themetadatarecord component.Constructors in org.neo4j.driver.internal.bolt.basicimpl.messaging.response with parameters of type ValueModifierConstructorDescriptionRecordMessage(Value[] fields) Creates an instance of aRecordMessagerecord class.Constructor parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.response with type arguments of type ValueModifierConstructorDescriptionSuccessMessage(Map<String, Value> metadata) Creates an instance of aSuccessMessagerecord class. -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging.v3
Methods in org.neo4j.driver.internal.bolt.basicimpl.messaging.v3 that return types with arguments of type ValueModifier and TypeMethodDescriptionBoltProtocolV3.Query.parameters()Returns the value of theparametersrecord component.Method parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.v3 with type arguments of type ValueModifier and TypeMethodDescriptionBoltProtocolV3.beginTransaction(Connection connection, DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, Duration txTimeout, Map<String, Value> txMetadata, String txType, NotificationConfig notificationConfig, MessageHandler<Void> handler, LoggingProvider logging) CompletionStage<io.netty.channel.Channel>BoltProtocolV3.initializeChannel(io.netty.channel.Channel channel, String userAgent, BoltAgent boltAgent, Map<String, Value> authMap, RoutingContext routingContext, NotificationConfig notificationConfig, Clock clock, CompletableFuture<Long> latestAuthMillisFuture) BoltProtocolV3.route(Connection connection, Map<String, Value> routingContext, Set<String> bookmarks, String databaseName, String impersonatedUser, MessageHandler<RouteSummary> handler, Clock clock, LoggingProvider logging) BoltProtocolV3.run(Connection connection, String query, Map<String, Value> parameters, MessageHandler<RunSummary> handler) BoltProtocolV3.runAuto(Connection connection, DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, String query, Map<String, Value> parameters, Set<String> bookmarks, Duration txTimeout, Map<String, Value> txMetadata, NotificationConfig notificationConfig, MessageHandler<RunSummary> handler, LoggingProvider logging) Constructor parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.v3 with type arguments of type Value -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging.v4
Method parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.v4 with type arguments of type ValueModifier and TypeMethodDescriptionBoltProtocolV4.route(Connection connection, Map<String, Value> routingContext, Set<String> bookmarks, String databaseName, String impersonatedUser, MessageHandler<RouteSummary> handler, Clock clock, LoggingProvider logging) -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging.v43
Method parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.v43 with type arguments of type ValueModifier and TypeMethodDescriptionBoltProtocolV43.route(Connection connection, Map<String, Value> routingContext, Set<String> bookmarks, String databaseName, String impersonatedUser, MessageHandler<RouteSummary> handler, Clock clock, LoggingProvider logging) -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging.v5
Methods in org.neo4j.driver.internal.bolt.basicimpl.messaging.v5 that return ValueModifier and TypeMethodDescriptionprotected ValueValueUnpackerV5.unpackPath()protected ValueValueUnpackerV5.unpackRelationship() -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging.v51
Method parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.v51 with type arguments of type ValueModifier and TypeMethodDescriptionCompletionStage<io.netty.channel.Channel>BoltProtocolV51.initializeChannel(io.netty.channel.Channel channel, String userAgent, BoltAgent boltAgent, Map<String, Value> authMap, RoutingContext routingContext, NotificationConfig notificationConfig, Clock clock, CompletableFuture<Long> latestAuthMillisFuture) BoltProtocolV51.logon(Connection connection, Map<String, Value> authMap, Clock clock, MessageHandler<Void> handler) -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging.v53
Method parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.v53 with type arguments of type ValueModifier and TypeMethodDescriptionCompletionStage<io.netty.channel.Channel>BoltProtocolV53.initializeChannel(io.netty.channel.Channel channel, String userAgent, BoltAgent boltAgent, Map<String, Value> authMap, RoutingContext routingContext, NotificationConfig notificationConfig, Clock clock, CompletableFuture<Long> latestAuthMillisFuture) -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.messaging.v57
Method parameters in org.neo4j.driver.internal.bolt.basicimpl.messaging.v57 with type arguments of type ValueModifier and TypeMethodDescriptionprotected GqlErrorMessageReaderV57.unpackGqlError(Map<String, Value> params) -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.spi
Methods in org.neo4j.driver.internal.bolt.basicimpl.spi with parameters of type ValueMethod parameters in org.neo4j.driver.internal.bolt.basicimpl.spi with type arguments of type Value -
Uses of Value in org.neo4j.driver.internal.bolt.basicimpl.util
Methods in org.neo4j.driver.internal.bolt.basicimpl.util that return ValueModifier and TypeMethodDescriptionstatic ValueMetadataExtractor.extractServer(Map<String, Value> metadata) Method parameters in org.neo4j.driver.internal.bolt.basicimpl.util with type arguments of type ValueModifier and TypeMethodDescriptionMetadataExtractor.extractBoltPatches(Map<String, Value> metadata) longMetadataExtractor.extractQueryId(Map<String, Value> metadata) MetadataExtractor.extractQueryKeys(Map<String, Value> metadata) longMetadataExtractor.extractResultAvailableAfter(Map<String, Value> metadata) static ValueMetadataExtractor.extractServer(Map<String, Value> metadata) -
Uses of Value in org.neo4j.driver.internal.bolt.pooledimpl
Method parameters in org.neo4j.driver.internal.bolt.pooledimpl with type arguments of type ValueModifier and TypeMethodDescriptionPooledBoltConnection.beginTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, TransactionType transactionType, Duration txTimeout, Map<String, Value> txMetadata, String txType, NotificationConfig notificationConfig) voidPooledBoltConnectionProvider.connect(CompletableFuture<PooledBoltConnection> acquisitionFuture, SecurityPlan securityPlan, DatabaseName databaseName, Map<String, Value> authMap, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, AccessMode mode, Set<String> bookmarks, String impersonatedUser, BoltProtocolVersion minVersion, NotificationConfig notificationConfig) voidPooledBoltConnectionProvider.connect(CompletableFuture<PooledBoltConnection> acquisitionFuture, SecurityPlan securityPlan, DatabaseName databaseName, Map<String, Value> authMap, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, AccessMode mode, Set<String> bookmarks, String impersonatedUser, BoltProtocolVersion minVersion, NotificationConfig notificationConfig) PooledBoltConnectionProvider.connect(SecurityPlan securityPlan, DatabaseName databaseName, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, AccessMode mode, Set<String> bookmarks, String impersonatedUser, BoltProtocolVersion minVersion, NotificationConfig notificationConfig, Consumer<DatabaseName> databaseNameConsumer) PooledBoltConnection.runInAutoCommitTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, String query, Map<String, Value> parameters, Duration txTimeout, Map<String, Value> txMetadata, NotificationConfig notificationConfig) PooledBoltConnectionProvider.supportsMultiDb(SecurityPlan securityPlan, Map<String, Value> authMap) PooledBoltConnectionProvider.supportsSessionAuth(SecurityPlan securityPlan, Map<String, Value> authMap) PooledBoltConnectionProvider.verifyConnectivity(SecurityPlan securityPlan, Map<String, Value> authMap) -
Uses of Value in org.neo4j.driver.internal.bolt.routedimpl
Method parameters in org.neo4j.driver.internal.bolt.routedimpl with type arguments of type ValueModifier and TypeMethodDescriptionRoutedBoltConnection.beginTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, TransactionType transactionType, Duration txTimeout, Map<String, Value> txMetadata, String txType, NotificationConfig notificationConfig) RoutedBoltConnectionProvider.connect(SecurityPlan securityPlan, DatabaseName databaseName, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, AccessMode mode, Set<String> bookmarks, String impersonatedUser, BoltProtocolVersion minVersion, NotificationConfig notificationConfig, Consumer<DatabaseName> databaseNameConsumer) RoutedBoltConnection.runInAutoCommitTransaction(DatabaseName databaseName, AccessMode accessMode, String impersonatedUser, Set<String> bookmarks, String query, Map<String, Value> parameters, Duration txTimeout, Map<String, Value> txMetadata, NotificationConfig notificationConfig) RoutedBoltConnectionProvider.supportsMultiDb(SecurityPlan securityPlan, Map<String, Value> authMap) RoutedBoltConnectionProvider.supportsSessionAuth(SecurityPlan securityPlan, Map<String, Value> authMap) RoutedBoltConnectionProvider.verifyConnectivity(SecurityPlan securityPlan, Map<String, Value> authMap) -
Uses of Value in org.neo4j.driver.internal.bolt.routedimpl.cluster
Method parameters in org.neo4j.driver.internal.bolt.routedimpl.cluster with type arguments of type ValueModifier and TypeMethodDescriptionRoutingTableHandler.ensureRoutingTable(SecurityPlan securityPlan, AccessMode mode, Set<String> rediscoveryBookmarks, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, BoltProtocolVersion minVersion) RoutingTableHandlerImpl.ensureRoutingTable(SecurityPlan securityPlan, AccessMode mode, Set<String> rediscoveryBookmarks, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, BoltProtocolVersion minVersion) RoutingTableRegistry.ensureRoutingTable(SecurityPlan securityPlan, CompletableFuture<DatabaseName> databaseNameFuture, AccessMode mode, Set<String> rediscoveryBookmarks, String impersonatedUser, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, BoltProtocolVersion minVersion) Ensures the routing table for the database with given access mode.RoutingTableRegistryImpl.ensureRoutingTable(SecurityPlan securityPlan, CompletableFuture<DatabaseName> databaseNameFuture, AccessMode mode, Set<String> rediscoveryBookmarks, String impersonatedUser, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, BoltProtocolVersion minVersion) Rediscovery.lookupClusterComposition(SecurityPlan securityPlan, RoutingTable routingTable, Function<BoltServerAddress, BoltConnectionProvider> connectionProviderGetter, Set<String> bookmarks, String impersonatedUser, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, BoltProtocolVersion minVersion) RediscoveryImpl.lookupClusterComposition(SecurityPlan securityPlan, RoutingTable routingTable, Function<BoltServerAddress, BoltConnectionProvider> connectionProviderGetter, Set<String> bookmarks, String impersonatedUser, Supplier<CompletionStage<Map<String, Value>>> authMapStageSupplier, BoltProtocolVersion minVersion) -
Uses of Value in org.neo4j.driver.internal.cursor
Methods in org.neo4j.driver.internal.cursor with parameters of type Value -
Uses of Value in org.neo4j.driver.internal.reactivestreams
Methods in org.neo4j.driver.internal.reactivestreams with parameters of type Value -
Uses of Value in org.neo4j.driver.internal.security
Methods in org.neo4j.driver.internal.security that return types with arguments of type ValueConstructor parameters in org.neo4j.driver.internal.security with type arguments of type Value -
Uses of Value in org.neo4j.driver.internal.summary
Fields in org.neo4j.driver.internal.summary with type parameters of type ValueModifier and TypeFieldDescriptionInternalPlan.EXPLAIN_PLAN_FROM_VALUEBuilds a regular plan without profiling information - eg.static final Function<Value,ProfiledPlan> InternalProfiledPlan.PROFILED_PLAN_FROM_VALUEBuilds a regular plan without profiling information - eg.Methods in org.neo4j.driver.internal.summary that return types with arguments of type ValueModifier and TypeMethodDescriptionInternalPlan.arguments()InternalGqlStatusObject.diagnosticRecord()Constructor parameters in org.neo4j.driver.internal.summary with type arguments of type ValueModifierConstructorDescriptionInternalGqlStatusObject(String gqlStatus, String statusDescription, Map<String, Value> diagnosticRecord) InternalNotification(String gqlStatus, String statusDescription, Map<String, Value> diagnosticRecord, String code, String title, String description, NotificationSeverity severityLevel, String rawSeverityLevel, NotificationClassification classification, String rawClassification, InputPosition position) protectedInternalPlan(String operatorType, Map<String, Value> arguments, List<String> identifiers, List<T> children) protectedInternalProfiledPlan(String operatorType, Map<String, Value> arguments, List<String> identifiers, List<ProfiledPlan> children, long dbHits, long records, long pageCacheHits, long pageCacheMisses, double pageCacheHitRatio, long time) -
Uses of Value in org.neo4j.driver.internal.types
Methods in org.neo4j.driver.internal.types that return ValueMethods in org.neo4j.driver.internal.types with parameters of type ValueModifier and TypeMethodDescriptionbooleanbooleanMethod parameters in org.neo4j.driver.internal.types with type arguments of type Value -
Uses of Value in org.neo4j.driver.internal.util
Methods in org.neo4j.driver.internal.util that return types with arguments of type ValueMethods in org.neo4j.driver.internal.util with parameters of type ValueMethod parameters in org.neo4j.driver.internal.util with type arguments of type ValueModifier and TypeMethodDescriptionMetadataExtractor.extractSummary(Query query, BoltConnection connection, long resultAvailableAfter, Map<String, Value> metadata, boolean legacyNotifications, GqlStatusObject gqlStatusObject) static <T> List<T>Extract.properties(MapAccessor map, Function<Value, V> mapFunction) -
Uses of Value in org.neo4j.driver.internal.value
Subinterfaces of Value in org.neo4j.driver.internal.valueClasses in org.neo4j.driver.internal.value that implement ValueModifier and TypeClassDescriptionclassclassclassclassclassclassEntityValueAdapter<V extends Entity>classclassclassclassclassclassclassfinal classclassNumberValueAdapter<V extends Number>classclassclassclassclassclassclassclassFields in org.neo4j.driver.internal.value declared as ValueMethods in org.neo4j.driver.internal.value that return ValueModifier and TypeMethodDescriptionValueAdapter.asValue()ListValue.get(int index) ValueAdapter.get(int index) Methods in org.neo4j.driver.internal.value that return types with arguments of type ValueMethod parameters in org.neo4j.driver.internal.value with type arguments of type ValueModifier and TypeMethodDescription<T> List<T><T> List<T><T> List<T><T> TValueAdapter.computeOrDefault(Function<Value, T> mapper, T defaultValue) <T> Iterable<T><T> Iterable<T><T> Iterable<T>Constructors in org.neo4j.driver.internal.value with parameters of type ValueConstructor parameters in org.neo4j.driver.internal.value with type arguments of type Value -
Uses of Value in org.neo4j.driver.reactive
Methods in org.neo4j.driver.reactive that return ValueModifier and TypeMethodDescriptionstatic ValueRxQueryRunner.parameters(Map<String, Object> map) Deprecated.Creates a value from a map instance.static ValueRxQueryRunner.parameters(Record record) Deprecated.Creates a value from a record instance.Methods in org.neo4j.driver.reactive with parameters of type ValueModifier and TypeMethodDescriptionRegister running of a query and return a publisher ofReactiveResult.default RxResultDeprecated.Register running of a query and return a reactive result stream. -
Uses of Value in org.neo4j.driver.reactivestreams
Methods in org.neo4j.driver.reactivestreams with parameters of type ValueModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<ReactiveResult>Register running of a query and return a publisher ofReactiveResult. -
Uses of Value in org.neo4j.driver.summary
Methods in org.neo4j.driver.summary that return types with arguments of type Value -
Uses of Value in org.neo4j.driver.types
Methods in org.neo4j.driver.types that return ValueModifier and TypeMethodDescriptionRetrieve the value of the property with the given keyRetrieve the value with the given key.Methods in org.neo4j.driver.types that return types with arguments of type ValueModifier and TypeMethodDescriptionMapAccessor.values()Retrieve all values of the underlying collectionMethods in org.neo4j.driver.types with parameters of type ValueModifier and TypeMethodDescriptionRetrieve the value with the given key.booleanTest if the given value has this typeMethod parameters in org.neo4j.driver.types with type arguments of type Value
Values.ofEntityElementId().