Package org.neo4j.gds.projection
Class ValueMapWrapper
- java.lang.Object
-
- org.neo4j.gds.projection.ValueMapWrapper
-
- All Implemented Interfaces:
org.neo4j.gds.core.CypherMapAccess
public final class ValueMapWrapper extends java.lang.Object implements org.neo4j.gds.core.CypherMapAccessWrapper around configuration options map
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontainsKey(java.lang.String key)static ValueMapWrappercreate(@Nullable org.neo4j.values.virtual.MapValue config)static ValueMapWrapperempty()intgetLongAsInt(java.lang.String key)java.util.Collection<java.lang.String>keySet()java.util.Map<java.lang.String,java.lang.Object>toMap()<V> VtypedValue(java.lang.String key, java.lang.Class<V> expectedType)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.neo4j.gds.core.CypherMapAccess
getBool, getChecked, getDouble, getInt, getLong, getNumber, getOptional, getString, getString, missingValueFor, requireBool, requireChecked, requireDouble, requireInt, requireLong, requireNumber, requireOnlyKeysFrom, requireString, verifyMutuallyExclusivePairs
-
-
-
-
Method Detail
-
create
public static ValueMapWrapper create(@Nullable @Nullable org.neo4j.values.virtual.MapValue config)
-
empty
public static ValueMapWrapper empty()
-
containsKey
public boolean containsKey(java.lang.String key)
- Specified by:
containsKeyin interfaceorg.neo4j.gds.core.CypherMapAccess
-
keySet
public java.util.Collection<java.lang.String> keySet()
- Specified by:
keySetin interfaceorg.neo4j.gds.core.CypherMapAccess
-
getLongAsInt
public int getLongAsInt(java.lang.String key)
- Specified by:
getLongAsIntin interfaceorg.neo4j.gds.core.CypherMapAccess
-
typedValue
@NotNull public <V> V typedValue(java.lang.String key, java.lang.Class<V> expectedType)- Specified by:
typedValuein interfaceorg.neo4j.gds.core.CypherMapAccess
-
toMap
public java.util.Map<java.lang.String,java.lang.Object> toMap()
- Specified by:
toMapin interfaceorg.neo4j.gds.core.CypherMapAccess
-
-