Uses of Class
oracle.pgx.common.types.PropertyType
-
Packages that use PropertyType Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.api.graphalteration This package contains the APIs for the alterGraph mutation.oracle.pgx.common.types This package contains enums and helper classes identifying common PGX types.oracle.pgx.config This package contains all configuration-related classes of PGX.oracle.pgx.config.mllib This package contains APIs to all graph machine learning features of PGX.oracle.pgx.config.mllib.loss This package contains classes for loss functions. -
-
Uses of PropertyType in oracle.pgx.api
Methods in oracle.pgx.api that return PropertyType Modifier and Type Method Description PropertyTypePgxCollection. getContentType()Gets this collection's content type.PropertyTypePgxMap. getKeyType()Gets the key type.PropertyTypePropertyMetaData. getPropertyType()Returns the type of the propertyPropertyTypePgxVect. getType()PropertyTypeProperty. getType()Gets the PropertyType.PropertyTypeScalar. getType()Gets the type of this Scalar.PropertyTypePgxMap. getValueType()Gets the value type.Methods in oracle.pgx.api with parameters of type PropertyType Modifier and Type Method Description <V> EdgeProperty<V>PgxGraph. createEdgeProperty(PropertyType type)Blocking version ofPgxGraph.createEdgePropertyAsync(PropertyType).<V> EdgeProperty<V>PgxGraph. createEdgeProperty(PropertyType type, int dimension, java.lang.String name, boolean hardName)Blocking version ofPgxGraph.createEdgePropertyAsync(PropertyType, int, String, boolean).<V> EdgeProperty<V>PgxGraph. createEdgeProperty(PropertyType type, java.lang.String name)Blocking version ofPgxGraph.createEdgePropertyAsync(PropertyType, String).<V> PgxFuture<EdgeProperty<V>>PgxGraph. createEdgePropertyAsync(PropertyType type)Creates a session-bound edge property<V> PgxFuture<EdgeProperty<V>>PgxGraph. createEdgePropertyAsync(PropertyType type, java.lang.String name)Creates a session-bound edge property<V> EdgeProperty<PgxVect<V>>PgxGraph. createEdgeVectorProperty(PropertyType type, int dimension)Blocking version ofPgxGraph.createEdgeVectorPropertyAsync(PropertyType, int).<V> EdgeProperty<PgxVect<V>>PgxGraph. createEdgeVectorProperty(PropertyType type, int dimension, java.lang.String name)Blocking version ofPgxGraph.createEdgeVectorPropertyAsync(PropertyType, int, String).<V> PgxFuture<EdgeProperty<PgxVect<V>>>PgxGraph. createEdgeVectorPropertyAsync(PropertyType type, int dimension)Creates a session-bound edge vector property<V> PgxFuture<EdgeProperty<PgxVect<V>>>PgxGraph. createEdgeVectorPropertyAsync(PropertyType type, int dimension, java.lang.String name)Creates a session-bound edge vector property<K,V>
PgxMap<K,V>PgxGraph. createMap(PropertyType keyType, PropertyType valType)Blocking version ofPgxGraph.createMapAsync(PropertyType, PropertyType).<K,V>
PgxMap<K,V>PgxGraph. createMap(PropertyType keyType, PropertyType valType, java.lang.String mapName)Blocking version ofPgxGraph.createMapAsync(PropertyType, PropertyType, String).<K,V>
PgxMap<K,V>PgxSession. createMap(PropertyType keyType, PropertyType valueType)Blocking version ofPgxSession.createMapAsync(PropertyType, PropertyType).<K,V>
PgxMap<K,V>PgxSession. createMap(PropertyType keyType, PropertyType valueType, java.lang.String name)Blocking version ofPgxSession.createMapAsync(PropertyType, PropertyType, String).<K,V>
PgxFuture<PgxMap<K,V>>PgxGraph. createMapAsync(PropertyType keyType, PropertyType valType)Creates a session-bound map<K,V>
PgxFuture<PgxMap<K,V>>PgxGraph. createMapAsync(PropertyType keyType, PropertyType valType, java.lang.String mapName)Creates a session-bound map<K,V>
PgxFuture<PgxMap<K,V>>PgxSession. createMapAsync(PropertyType keyType, PropertyType valueType)Convenience method aroundPgxSession.createMapAsync(PropertyType, PropertyType, String)passing name asnull.<K,V>
PgxFuture<PgxMap<K,V>>PgxSession. createMapAsync(PropertyType keyType, PropertyType valueType, java.lang.String name)Creates a map.<T> Scalar<T>PgxGraph. createScalar(PropertyType type)Blocking version ofPgxGraph.createScalarAsync(PropertyType).<T> Scalar<T>PgxGraph. createScalar(PropertyType type, java.lang.String newScalarName)Blocking version ofPgxGraph.createScalarAsync(PropertyType, String).<T> PgxFuture<Scalar<T>>PgxGraph. createScalarAsync(PropertyType type)Creates a new Scalar.<T> PgxFuture<Scalar<T>>PgxGraph. createScalarAsync(PropertyType type, java.lang.String newScalarName)Create a session-bound scalar.<T> ScalarSequence<T>PgxSession. createSequence(PropertyType contentType)Blocking version ofPgxSession.createSequenceAsync(PropertyType).<T> ScalarSequence<T>PgxSession. createSequence(PropertyType contentType, java.lang.String name)Blocking version ofPgxSession.createSequenceAsync(PropertyType, String).<T> PgxFuture<ScalarSequence<T>>PgxSession. createSequenceAsync(PropertyType contentType)Convenience method aroundPgxSession.createSequenceAsync(PropertyType, String)passing name asnull.<T> PgxFuture<ScalarSequence<T>>PgxSession. createSequenceAsync(PropertyType contentType, java.lang.String name)Creates a sequence of scalars.<T> ScalarSet<T>PgxSession. createSet(PropertyType contentType)Blocking version ofPgxSession.createSetAsync(PropertyType).<T> ScalarSet<T>PgxSession. createSet(PropertyType contentType, java.lang.String name)Blocking version ofPgxSession.createSetAsync(PropertyType, String).<T> PgxFuture<ScalarSet<T>>PgxSession. createSetAsync(PropertyType contentType)Convenience method aroundPgxSession.createSetAsync(PropertyType, String)passing name asnull.<T> PgxFuture<ScalarSet<T>>PgxSession. createSetAsync(PropertyType contentType, java.lang.String name)Creates a set of scalars.<T> Scalar<PgxVect<T>>PgxGraph. createVectorScalar(PropertyType type, int dimension)Blocking version ofPgxGraph.createVectorScalarAsync(PropertyType, int).<T> Scalar<PgxVect<T>>PgxGraph. createVectorScalar(PropertyType type, int dimension, java.lang.String newScalarName)Blocking version ofPgxGraph.createVectorScalarAsync(PropertyType, int, String).<T> PgxFuture<Scalar<PgxVect<T>>>PgxGraph. createVectorScalarAsync(PropertyType type, int dimension)Create a session-bound vector scalar.<T> PgxFuture<Scalar<PgxVect<T>>>PgxGraph. createVectorScalarAsync(PropertyType type, int dimension, java.lang.String newScalarName)Create a session-bound vector scalar.<ID,V>
VertexProperty<ID,V>PgxGraph. createVertexProperty(PropertyType type)Blocking version ofPgxGraph.createVertexPropertyAsync(PropertyType).<ID,V>
VertexProperty<ID,V>PgxGraph. createVertexProperty(PropertyType type, int dimension, java.lang.String name, boolean hardName)Blocking version ofPgxGraph.createVertexPropertyAsync(PropertyType, int, String, boolean).<ID,V>
VertexProperty<ID,V>PgxGraph. createVertexProperty(PropertyType type, java.lang.String name)Blocking version ofPgxGraph.createVertexPropertyAsync(PropertyType, String).<ID,V>
PgxFuture<VertexProperty<ID,V>>PgxGraph. createVertexPropertyAsync(PropertyType type)Creates a session-bound vertex property<ID,V>
PgxFuture<VertexProperty<ID,V>>PgxGraph. createVertexPropertyAsync(PropertyType type, java.lang.String name)Creates a session-bound vertex property<ID,V>
VertexProperty<ID,PgxVect<V>>PgxGraph. createVertexVectorProperty(PropertyType type, int dimension)Blocking version ofPgxGraph.createVertexVectorPropertyAsync(PropertyType, int).<ID,V>
VertexProperty<ID,PgxVect<V>>PgxGraph. createVertexVectorProperty(PropertyType type, int dimension, java.lang.String name)Blocking version ofPgxGraph.createVertexVectorPropertyAsync(PropertyType, int, String).<ID,V>
PgxFuture<VertexProperty<ID,PgxVect<V>>>PgxGraph. createVertexVectorPropertyAsync(PropertyType type, int dimension)Creates a session-bound vertex vector property<ID,V>
PgxFuture<VertexProperty<ID,PgxVect<V>>>PgxGraph. createVertexVectorPropertyAsync(PropertyType type, int dimension, java.lang.String name)Creates a session-bound vertex vector property<V> EdgeProperty<V>PgxGraph. getOrCreateEdgeProperty(PropertyType type, java.lang.String name)Blocking version ofPgxGraph.getOrCreateEdgePropertyAsync(PropertyType, String).<V> PgxFuture<EdgeProperty<V>>PgxGraph. getOrCreateEdgePropertyAsync(PropertyType type, java.lang.String name)Gets or creates an edge property<V> EdgeProperty<PgxVect<V>>PgxGraph. getOrCreateEdgeVectorProperty(PropertyType type, int dimension, java.lang.String name)Blocking version ofPgxGraph.getOrCreateEdgeVectorPropertyAsync(PropertyType, int, String).<V> PgxFuture<EdgeProperty<PgxVect<V>>>PgxGraph. getOrCreateEdgeVectorPropertyAsync(PropertyType type, int dimension, java.lang.String name)Gets or creates an edge vector property<V> PgxFuture<EdgeProperty<PgxVect<V>>>PgxGraph. getOrCreateEdgeVertexPropertyAsync(PropertyType type, int dimension, java.lang.String name)Gets or creates an edge vector property<ID,V>
VertexProperty<ID,V>PgxGraph. getOrCreateVertexProperty(PropertyType type, java.lang.String name)Blocking version ofPgxGraph.getOrCreateVertexPropertyAsync(PropertyType, String).<ID,V>
PgxFuture<VertexProperty<ID,V>>PgxGraph. getOrCreateVertexPropertyAsync(PropertyType type, java.lang.String name)Gets or creates a vertex property<ID,V>
VertexProperty<ID,PgxVect<V>>PgxGraph. getOrCreateVertexVectorProperty(PropertyType type, int dimension, java.lang.String name)Blocking version ofPgxGraph.getOrCreateVertexVectorPropertyAsync(PropertyType, int, String).<ID,V>
PgxFuture<VertexProperty<ID,PgxVect<V>>>PgxGraph. getOrCreateVertexVectorPropertyAsync(PropertyType type, int dimension, java.lang.String name)Gets or creates a vertex vector propertystatic <V> VProperty. wrap(V value, PropertyType type, PgxGraph graph)Constructors in oracle.pgx.api with parameters of type PropertyType Constructor Description PgxVect(E[] vector, PropertyType type)Construct a new vector.PropertyMetaData(java.lang.String name, oracle.pgx.common.PgxId id, PropertyType propertyType, int dimension, boolean transientProperty) -
Uses of PropertyType in oracle.pgx.api.graphalteration
Methods in oracle.pgx.api.graphalteration with parameters of type PropertyType Modifier and Type Method Description GraphAlterationEmptyEdgeProviderBuilderGraphAlterationEmptyEdgeProviderBuilder. addProperty(java.lang.String name, PropertyType type)Adds a property of the given name and type to the provider.GraphAlterationEmptyEdgeProviderBuilderGraphAlterationEmptyEdgeProviderBuilder. addProperty(java.lang.String name, PropertyType type, int dimension)Adds a property of the given name, type and dimension to the provider.GraphAlterationEmptyProviderBuilderGraphAlterationEmptyProviderBuilder. addProperty(java.lang.String name, PropertyType type)Adds a property of the given name and type to the provider.GraphAlterationEmptyProviderBuilderGraphAlterationEmptyProviderBuilder. addProperty(java.lang.String name, PropertyType type, int dimension)Adds a property of the given name, type and dimension to the provider.GraphAlterationEmptyVertexProviderBuilderGraphAlterationEmptyVertexProviderBuilder. addProperty(java.lang.String name, PropertyType type)Adds a property of the given name and type to the provider.GraphAlterationEmptyVertexProviderBuilderGraphAlterationEmptyVertexProviderBuilder. addProperty(java.lang.String name, PropertyType type, int dimension)Adds a property of the given name, type and dimension to the provider. -
Uses of PropertyType in oracle.pgx.common.types
Methods in oracle.pgx.common.types that return PropertyType Modifier and Type Method Description static PropertyTypeTypeConverter. entityTypeToPropertyType(EntityType type)Converts an entity type to a property type.static PropertyTypeTypeConverter. getPropertyTypeForIdType(IdType idType)Converts an IdType to the corresponding matching property typestatic PropertyTypePropertyType. getTypeFor(java.lang.Class<?> typeClass)Returns the PropertyType based on a typeClass.static PropertyTypePropertyType. parsePropertyType(java.lang.String input)Parse PropertyType from a string value.PropertyTypeEntityType. toPropertyType()Converts this entity type to aPropertyType.static PropertyTypeIdType. toPropertyType(IdType idType)Returns the equivalent PropertyType of the specified IdType.static PropertyTypePropertyType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PropertyType[]PropertyType. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in oracle.pgx.common.types with parameters of type PropertyType Modifier and Type Method Description static IdTypeIdType. fromPropertyType(PropertyType propertyType)static IdTypeTypeConverter. getIdTypeForPropertyType(PropertyType propertyType)Converts an IdType to the corresponding matching property typestatic java.time.temporal.TemporalPropertyType. parseTemporal(java.lang.String input, PropertyType type)static EntityTypeTypeConverter. propertyTypeToEntityType(PropertyType type)Delegate toTypeConverter.propertyTypeToEntityType(PropertyType, boolean)withstrict = truestatic EntityTypeTypeConverter. propertyTypeToEntityType(PropertyType type, boolean strict)Converts a property type to an entity type. -
Uses of PropertyType in oracle.pgx.config
Methods in oracle.pgx.config that return PropertyType Modifier and Type Method Description PropertyTypeGraphConfig. getEdgePropertyType(int i)Get the name of a edge property by indexPropertyTypeGraphConfig. getNodePropertyType(int i)Get the type of a vertex property by indexPropertyTypeEntityProviderConfig. getPropertyType(int i)Get the type of a property by indexPropertyTypeRdfAction. getPropertyType()abstract PropertyTypeAbstractUdfFunctionConfig. getReturnType()PropertyTypeUdfFunctionConfig. getReturnType()return type of the functionabstract PropertyTypeAbstractGraphPropertyConfig. getType()type of property.PropertyTypeGraphPropertyConfig. getType()type of property (Note: date is deprecated, use one of local_date / time / timestamp / time_with_timezone / timestamp_with_timezone instead).PropertyTypeUdfFunctionArgumentConfig. getType()type of the argumentMethods in oracle.pgx.config that return types with arguments of type PropertyType Modifier and Type Method Description java.util.Map<java.lang.String,PropertyType>GraphConfig. getEdgePropertyTypes()java.util.Map<java.lang.String,PropertyType>GraphConfig. getVertexPropertyTypes()Methods in oracle.pgx.config with parameters of type PropertyType Modifier and Type Method Description TAbstractGraphConfigBuilder. addEdgeProperty(java.lang.String name, PropertyType type)Convenience method forAbstractGraphConfigBuilder.addEdgeProperty(String, PropertyType, Object).TAbstractGraphConfigBuilder. addEdgeProperty(java.lang.String name, PropertyType type, java.lang.Object defaultVal)Adds an edge property to this builderTAbstractGraphConfigBuilder. addEdgeProperty(java.lang.String name, PropertyType type, java.lang.Object defaultVal, java.lang.Object column)Adds an edge property to this builderTAbstractGraphConfigBuilder. addEdgeVectorProperty(java.lang.String name, PropertyType type, int dimension)Convenience method forAbstractGraphConfigBuilder.addEdgeProperty(String, PropertyType, Object).TAbstractGraphConfigBuilder. addEdgeVectorProperty(java.lang.String name, PropertyType type, int dimension, java.lang.Object defaultVal)Adds an edge property to this builderTAbstractGraphConfigBuilder. addEdgeVectorProperty(java.lang.String name, PropertyType type, int dimension, java.lang.Object defaultVal, java.lang.Object column)Adds an edge property to this builderTAbstractGraphConfigBuilder. addNodeProperty(java.lang.String name, PropertyType type)TAbstractGraphConfigBuilder. addNodeProperty(java.lang.String name, PropertyType type, java.lang.Object defaultVal)TAbstractEntityProviderConfigBuilder. addProperty(java.lang.String name, PropertyType type)Convenience method forAbstractEntityProviderConfigBuilder.addProperty(String, PropertyType, Object).TAbstractEntityProviderConfigBuilder. addProperty(java.lang.String name, PropertyType type, java.lang.Object defaultVal)Add a property to this builderTAbstractEntityProviderConfigBuilder. addProperty(java.lang.String name, PropertyType type, java.lang.Object defaultVal, java.lang.Object column)Add a property to this builderTAbstractEntityProviderConfigBuilder. addVectorProperty(java.lang.String name, PropertyType type, int dimension)Add a property to this builderTAbstractEntityProviderConfigBuilder. addVectorProperty(java.lang.String name, PropertyType type, int dimension, java.lang.Object defaultVal)Add a property to this builderTAbstractEntityProviderConfigBuilder. addVectorProperty(java.lang.String name, PropertyType type, int dimension, java.lang.Object defaultVal, java.lang.Object column)Add a property to this builderTAbstractEntityProviderConfigBuilder. addVectorProperty(java.lang.String name, PropertyType type, int dimension, java.lang.Object defaultVal, java.lang.Object column, java.lang.Object field, java.lang.Object aggregate, java.lang.Object groupKey, java.lang.Object dropAfterLoading)Add a property to this builderTAbstractGraphConfigBuilder. addVertexProperty(java.lang.String name, PropertyType type)Convenience method forAbstractGraphConfigBuilder.addVertexProperty(String, PropertyType, Object).TAbstractGraphConfigBuilder. addVertexProperty(java.lang.String name, PropertyType type, java.lang.Object defaultVal)Adds a vertex property to this builderTAbstractGraphConfigBuilder. addVertexProperty(java.lang.String name, PropertyType type, java.lang.Object defaultVal, java.lang.Object column)Adds a vertex property to this builderTAbstractGraphConfigBuilder. addVertexVectorProperty(java.lang.String name, PropertyType type, int dimension)Convenience method forAbstractGraphConfigBuilder.addVertexProperty(String, PropertyType, Object).TAbstractGraphConfigBuilder. addVertexVectorProperty(java.lang.String name, PropertyType type, int dimension, java.lang.Object defaultVal)Add a vertex property to this builderTAbstractGraphConfigBuilder. addVertexVectorProperty(java.lang.String name, PropertyType type, int dimension, java.lang.Object defaultVal, java.lang.Object column)Add a vertex property to this builderstatic RdfActionRdfAction. fromPropertyType(PropertyType propertyType)static java.util.List<java.time.format.DateTimeFormatter>GraphFormatConfig. getDefaultFormats(CommonLoadableConfig loadableConfig, PropertyType type)UdfFunctionConfigBuilderUdfFunctionConfigBuilder. setReturnType(PropertyType returnType)return type of the functionGraphPropertyConfigBuilderGraphPropertyConfigBuilder. setType(PropertyType type)type of property (Note: date is deprecated, use one of local_date / time / timestamp / time_with_timezone / timestamp_with_timezone instead).UdfFunctionArgumentConfigBuilderUdfFunctionArgumentConfigBuilder. setType(PropertyType type)type of the argument -
Uses of PropertyType in oracle.pgx.config.mllib
Fields in oracle.pgx.config.mllib with type parameters of type PropertyType Modifier and Type Field Description static java.util.EnumSet<PropertyType>GraphWiseBaseModelConfig. SUPPORTED_INPUT_TYPESBOOLEAN, FLOAT, DOUBLEstatic java.util.EnumSet<PropertyType>SupervisedEdgeWiseModelConfig. SUPPORTED_LABEL_TYPESINTEGER, STRING, BOOLEAN, LONGstatic java.util.EnumSet<PropertyType>SupervisedGraphWiseModelConfig. SUPPORTED_LABEL_TYPESINTEGER, STRING, BOOLEAN, LONGstatic java.util.EnumSet<PropertyType>SupervisedEdgeWiseModelConfig. SUPPORTED_REGRESSION_TYPESFLOAT, DOUBLE, INTEGER, LONGstatic java.util.EnumSet<PropertyType>SupervisedGraphWiseModelConfig. SUPPORTED_REGRESSION_TYPESFLOAT, DOUBLE, INTEGER, LONGMethods in oracle.pgx.config.mllib that return PropertyType Modifier and Type Method Description PropertyTypePg2vecModelConfig. getGraphIdPropertyType()PropertyTypeLabelMaps. getLabelType()PropertyTypeSupervisedEdgeWiseModelConfig. getLabelType()PropertyTypeSupervisedGraphWiseModelConfig. getLabelType()PropertyTypeDeepWalkModelConfig. getVertexIdPropertyType()Methods in oracle.pgx.config.mllib with parameters of type PropertyType Modifier and Type Method Description voidPg2vecModelConfig. setGraphIdPropertyType(PropertyType graphIdPropertyType)voidLabelMaps. setLabelType(PropertyType labelType)voidSupervisedEdgeWiseModelConfig. setLabelType(PropertyType labelType)voidSupervisedGraphWiseModelConfig. setLabelType(PropertyType labelType)voidDeepWalkModelConfig. setVertexIdPropertyType(PropertyType vertexIdPropertyType)Constructors in oracle.pgx.config.mllib with parameters of type PropertyType Constructor Description DeepWalkModelConfig(int minWordFrequency, int batchSize, int numEpochs, int layerSize, double learningRate, double minLearningRate, int windowSize, int walkLength, int walksPerVertex, double sampleRate, int negativeSample, java.lang.Double trainingLoss, double validationFraction, PropertyType vertexIdPropertyType, java.lang.Long seed, boolean shuffle, boolean enableAccelerator)Pg2vecModelConfig(int walkLength, int walksPerVertex, int minWordFrequency, int batchSize, int numEpochs, int layerSize, double learningRate, double minLearningRate, int windowSize, java.util.Collection<java.lang.String> vertexPropertyNames, java.lang.String graphLetIdName, PropertyType graphIdPropertyType, java.lang.Double trainingLoss, double validationFraction, boolean useGraphletSize, java.lang.Long seed, boolean shuffle, java.lang.String graphletSizePropertyName, boolean enableAccelerator) -
Uses of PropertyType in oracle.pgx.config.mllib.loss
Methods in oracle.pgx.config.mllib.loss that return PropertyType Modifier and Type Method Description PropertyTypeDevNetLoss. getLabelType()Constructors in oracle.pgx.config.mllib.loss with parameters of type PropertyType Constructor Description DevNetLoss(double confidenceMargin, PropertyType labelType, java.lang.String anomalyPropertyStringValue)
-