Package org.neo4j.gds.api.schema
Interface PropertySchema
-
- All Known Subinterfaces:
RelationshipPropertySchema
public interface PropertySchema
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description org.neo4j.gds.api.DefaultValuedefaultValue()java.lang.Stringkey()static PropertySchemaof(java.lang.String propertyKey, org.neo4j.gds.api.nodeproperties.ValueType valueType)static PropertySchemaof(java.lang.String propertyKey, org.neo4j.gds.api.nodeproperties.ValueType valueType, org.neo4j.gds.api.DefaultValue defaultValue, PropertyState propertyState)PropertyStatestate()org.neo4j.gds.api.nodeproperties.ValueTypevalueType()
-
-
-
Method Detail
-
key
java.lang.String key()
-
valueType
org.neo4j.gds.api.nodeproperties.ValueType valueType()
-
defaultValue
org.neo4j.gds.api.DefaultValue defaultValue()
-
state
@Auxiliary PropertyState state()
-
of
static PropertySchema of(java.lang.String propertyKey, org.neo4j.gds.api.nodeproperties.ValueType valueType)
-
of
static PropertySchema of(java.lang.String propertyKey, org.neo4j.gds.api.nodeproperties.ValueType valueType, org.neo4j.gds.api.DefaultValue defaultValue, PropertyState propertyState)
-
-