Package org.neo4j.gds.api.properties
Interface Property<VALUE extends PropertyValues>
-
- All Known Subinterfaces:
GraphProperty,NodeProperty
public interface Property<VALUE extends PropertyValues>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default org.neo4j.gds.api.DefaultValuedefaultValue()default java.lang.Stringkey()org.neo4j.gds.api.schema.PropertySchemapropertySchema()default org.neo4j.gds.api.PropertyStatepropertyState()VALUEvalues()default org.neo4j.gds.api.nodeproperties.ValueTypevalueType()
-
-
-
Method Detail
-
values
VALUE values()
-
propertySchema
org.neo4j.gds.api.schema.PropertySchema propertySchema()
-
key
@Ignore default java.lang.String key()
-
valueType
@Ignore default org.neo4j.gds.api.nodeproperties.ValueType valueType()
-
defaultValue
@Ignore default org.neo4j.gds.api.DefaultValue defaultValue()
-
propertyState
@Ignore default org.neo4j.gds.api.PropertyState propertyState()
-
-