Package org.neo4j.gds
Class AbstractNodeProjection
- java.lang.Object
-
- org.neo4j.gds.ElementProjection
-
- org.neo4j.gds.AbstractNodeProjection
-
public abstract class AbstractNodeProjection extends ElementProjection
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAbstractNodeProjection.Builder
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringLABEL_KEY-
Fields inherited from class org.neo4j.gds.ElementProjection
PROJECT_ALL, PROPERTIES_KEY
-
-
Constructor Summary
Constructors Constructor Description AbstractNodeProjection()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static org.neo4j.gds.NodeProjectionall()static AbstractNodeProjection.Builderbuilder()static org.neo4j.gds.NodeProjectionfromMap(java.util.Map<java.lang.String,java.lang.Object> map, NodeLabel nodeLabel)static org.neo4j.gds.NodeProjectionfromObject(java.lang.Object object, NodeLabel nodeLabel)static org.neo4j.gds.NodeProjectionfromString(@Nullable java.lang.String label)abstract java.lang.Stringlabel()static org.neo4j.gds.NodeProjectionof(java.lang.String label)booleanprojectAll()org.neo4j.gds.PropertyMappingsproperties()org.neo4j.gds.NodeProjectionwithAdditionalPropertyMappings(org.neo4j.gds.PropertyMappings mappings)-
Methods inherited from class org.neo4j.gds.ElementProjection
toObject
-
-
-
-
Field Detail
-
LABEL_KEY
public static final java.lang.String LABEL_KEY
- See Also:
- Constant Field Values
-
-
Method Detail
-
label
public abstract java.lang.String label()
-
properties
@Default public org.neo4j.gds.PropertyMappings properties()
- Overrides:
propertiesin classElementProjection
-
projectAll
public boolean projectAll()
- Specified by:
projectAllin classElementProjection
-
of
public static org.neo4j.gds.NodeProjection of(java.lang.String label)
-
all
public static org.neo4j.gds.NodeProjection all()
-
fromObject
public static org.neo4j.gds.NodeProjection fromObject(java.lang.Object object, NodeLabel nodeLabel)
-
fromString
public static org.neo4j.gds.NodeProjection fromString(@Nullable @Nullable java.lang.String label)
-
fromMap
public static org.neo4j.gds.NodeProjection fromMap(java.util.Map<java.lang.String,java.lang.Object> map, NodeLabel nodeLabel)
-
withAdditionalPropertyMappings
public org.neo4j.gds.NodeProjection withAdditionalPropertyMappings(org.neo4j.gds.PropertyMappings mappings)
- Specified by:
withAdditionalPropertyMappingsin classElementProjection
-
builder
public static AbstractNodeProjection.Builder builder()
-
-