Uses of Interface
com.graphdbapi.driver.v1.Value
-
Packages that use Value Package Description com.graphdbapi.driver com.graphdbapi.driver.v1 com.graphdbapi.driver.v1.types -
-
Uses of Value in com.graphdbapi.driver
Methods in com.graphdbapi.driver that return Value Modifier and Type Method Description Value
ElementWithProperty. getProperty(String key)
获取某个属性名对应的值Methods in com.graphdbapi.driver that return types with arguments of type Value Modifier and Type Method Description Map<String,Value>
ElementWithProperty. getAllProperties()
返回所有属性集合Method parameters in com.graphdbapi.driver with type arguments of type Value Modifier and Type Method Description StatementResult
Graph. executeCypher(String cypher, Map<String,Value> parameters)
执行cypher查询。 -
Uses of Value in com.graphdbapi.driver.v1
Methods in com.graphdbapi.driver.v1 that return Value Modifier and Type Method Description Value
Record. get(int index)
检索给定字段索引处的值Value
Record. get(String key)
使用给定键检索属性的值Value
Value. get(int index)
ListValue
指定索引的值Methods in com.graphdbapi.driver.v1 that return types with arguments of type Value Modifier and Type Method Description List<com.graphdbapi.driver.v1.util.Pair<String,Value>>
Record. fields()
检索所有记录字段List<Value>
Record. values()
检索基础映射的值Method parameters in com.graphdbapi.driver.v1 with type arguments of type Value Modifier and Type Method Description <T> List<T>
Value. asList(com.graphdbapi.driver.v1.util.Function<Value,T> mapFunction)
如果可能的话,将值作为通过列表元素映射获得的T列表。<T> List<T>
Value. asList(com.graphdbapi.driver.v1.util.Function<Value,T> mapFunction, List<T> defaultValue)
如果可能的话,将值作为通过列表元素映射获得的T列表。<T> Map<String,T>
Record. asMap(com.graphdbapi.driver.v1.util.Function<Value,T> mapper)
将此记录作为map返回,其中值使用给定的转换函数进行转换。您可以在Values
中找到一个公共映射函数库。<T> Map<String,T>
Value. asMap(com.graphdbapi.driver.v1.util.Function<Value,T> mapFunction, Map<String,T> defaultValue)
返回为字符串键和使用asObject()
转换后的值的映射。<T> Set<T>
Value. asSet(com.graphdbapi.driver.v1.util.Function<Value,T> mapFunction)
如果可能的话,将值作为通过集合元素映射获得的T集合。<T> Set<T>
Value. asSet(com.graphdbapi.driver.v1.util.Function<Value,T> mapFunction, Set<T> defaultValue)
如果可能的话,将值作为通过集合元素映射获得的T集合。<T> T
Value. computeOrDefault(com.graphdbapi.driver.v1.util.Function<Value,T> mapper, T defaultValue)
如果值不是NullValue
,则对值应用映射函数;如果值为NullValue
,则应用默认值。 -
Uses of Value in com.graphdbapi.driver.v1.types
Methods in com.graphdbapi.driver.v1.types that return Value Modifier and Type Method Description Value
MapAccessor. get(String key)
使用给定键检索属性的值Value
MapAccessorWithDefaultValue. get(String key, Value defaultValue)
使用给定键检索值。 如果键没有找到值,则返回提供的默认值。Methods in com.graphdbapi.driver.v1.types that return types with arguments of type Value Modifier and Type Method Description Iterable<Value>
MapAccessor. values()
检索底层集合的所有值Methods in com.graphdbapi.driver.v1.types with parameters of type Value Modifier and Type Method Description Value
MapAccessorWithDefaultValue. get(String key, Value defaultValue)
使用给定键检索值。 如果键没有找到值,则返回提供的默认值。Method parameters in com.graphdbapi.driver.v1.types with type arguments of type Value Modifier and Type Method Description <T> Map<String,T>
MapAccessor. asMap(com.graphdbapi.driver.v1.util.Function<Value,T> mapFunction)
将底层映射作为字符串键和使用asObject()
转换后的值的映射返回。 通过mapFunction做映射处理<T> com.graphdbapi.driver.v1.graph.VariousMap
MapAccessor. asVariousMap(com.graphdbapi.driver.v1.util.Function<Value,T> mapFunction)
转换为asVariousMap 通过mapFunction做映射处理<T> List<T>
MapAccessorWithDefaultValue. get(String key, List<T> defaultValue, com.graphdbapi.driver.v1.util.Function<Value,T> mapFunc)
使用给定键检索列表。 如果键没有找到值,则返回提供的默认值<T> Map<String,T>
MapAccessorWithDefaultValue. get(String key, Map<String,T> defaultValue, com.graphdbapi.driver.v1.util.Function<Value,T> mapFunc)
使用给定键检索映射。 如果键没有找到值,则返回提供的默认值<T> Iterable<T>
MapAccessor. values(com.graphdbapi.driver.v1.util.Function<Value,T> mapFunction)
映射并检索底层集合的所有值
-