Uses of Class
oracle.pgx.common.types.IdType
-
Packages that use IdType 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. -
-
Uses of IdType in oracle.pgx.api
Methods in oracle.pgx.api that return IdType Modifier and Type Method Description IdTypeGraphMetaData. getEdgeIdType()Gets the edge ID type of this graph.IdTypeEdgeCollection. getIdType()IdTypeEntityProviderMetaData. getIdType()Gets the ID type of this entity table.abstract IdTypePgxCollection. getIdType()Gets the ID type of the element type.IdTypeScalarCollection. getIdType()IdTypeVertexCollection. getIdType()IdTypePgxEntity. getType()Gets the type.IdTypePgqlResultElement. getVertexEdgeIdType()Gets the type of vertex/edge result elements.IdTypeGraphMetaData. getVertexIdType()Gets the vertex ID type of this graph.IdTypePgxGraph. getVertexIdType()Gets the vertex ID type of this graph.Methods in oracle.pgx.api with parameters of type IdType Modifier and Type Method Description <ID extends java.lang.Comparable<ID>>
GraphBuilder<ID>PgxSession. createGraphBuilder(IdType idType)Creates a graph builder with the given vertex ID type usingIdGenerationStrategy.AUTO_GENERATEDfor edge ID generation strategy<ID extends java.lang.Comparable<ID>>
GraphBuilder<ID>PgxSession. createGraphBuilder(IdType idType, IdGenerationStrategy vertexIdGenerationStrategy, IdGenerationStrategy edgeIdGenerationStrategy)Creates a graph builder with the given vertex ID type and Ids ModevoidEntityProviderMetaData. setIdType(IdType idType)Sets the ID type of this entity table.Constructors in oracle.pgx.api with parameters of type IdType Constructor Description EdgeProviderMetaData(java.lang.String name, IdType idType, boolean directed, java.util.Set<java.lang.String> labels, java.util.List<PropertyMetaData> properties, java.lang.String sourceVertexProviderName, java.lang.String destinationVertexProviderName)GraphMetaData(IdType vertexIdType, IdType edgeIdType)PgqlResultElement(PgqlResultElement.Type elementType, java.lang.String varName, IdType vertexEdgeIdType)ConstructorPgqlResultElement(PgqlResultElement.Type elementType, PgqlResultElement.Type collectionElementType, java.lang.String varName, IdType vertexEdgeIdType)ConstructorVertexProviderMetaData(java.lang.String name, IdType idType, java.util.Set<java.lang.String> labels, java.util.List<PropertyMetaData> properties, java.util.Set<java.lang.String> edgeProviderNamesWhereSource, java.util.Set<java.lang.String> edgeProviderNamesWhereDestination) -
Uses of IdType in oracle.pgx.api.graphalteration
Methods in oracle.pgx.api.graphalteration with parameters of type IdType Modifier and Type Method Description GraphAlterationEmptyEdgeProviderBuilderGraphAlterationEmptyEdgeProviderBuilder. setKeyType(IdType type)Sets the type of the keys in the provider.GraphAlterationEmptyProviderBuilderGraphAlterationEmptyProviderBuilder. setKeyType(IdType type)Sets the type of the keys in the provider.GraphAlterationEmptyVertexProviderBuilderGraphAlterationEmptyVertexProviderBuilder. setKeyType(IdType type)Sets the type of the keys in the provider. -
Uses of IdType in oracle.pgx.common.types
Methods in oracle.pgx.common.types that return IdType Modifier and Type Method Description static IdTypeIdType. fromPropertyType(PropertyType propertyType)static IdTypeTypeConverter. getIdTypeForPropertyType(PropertyType propertyType)Converts an IdType to the corresponding matching property typestatic IdTypeIdType. getTypeFor(java.lang.Class<?> typeClass)Returns the IdType based on a typeClass.static IdTypeIdType. parseIdType(java.lang.String input)Parse IdType from a string value.static IdTypeIdType. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IdType[]IdType. 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 IdType Modifier and Type Method Description static PropertyTypeTypeConverter. getPropertyTypeForIdType(IdType idType)Converts an IdType to the corresponding matching property typestatic PropertyTypeIdType. toPropertyType(IdType idType)Returns the equivalent PropertyType of the specified IdType. -
Uses of IdType in oracle.pgx.config
Methods in oracle.pgx.config that return IdType Modifier and Type Method Description IdTypeEntityProviderConfig. getDestinationVertexKeyType()Get the key type corresponding to the destination vertex provider of this edge provider configurationIdTypeFileGraphConfig. getEdgeIdType()type of the edge ID.IdTypeGraphConfig. getEdgeIdType()Get the edge ID type of this graph configurationIdTypePartitionedGraphConfig. getEdgeIdType()type of the edge ID.IdTypeRdfGraphConfig. getEdgeIdType()type of the edge ID.IdTypeTwoTablesRdbmsGraphConfig. getEdgeIdType()type of the edge ID.IdTypeTwoTablesTextGraphConfig. getEdgeIdType()type of the edge ID.abstract IdTypeEntityProviderConfig. getKeyType()Get the key type of this provider configurationIdTypeEsEntityProviderConfig. getKeyType()type of the keysIdTypeFileEntityProviderConfig. getKeyType()type of the keysIdTypeRdbmsEntityProviderConfig. getKeyType()type of the keysIdTypeGraphConfig. getNodeKeyType()alias forGraphConfig.getVertexIdType()IdTypeEntityProviderConfig. getSourceVertexKeyType()Get the key type corresponding to the source vertex provider of this edge provider configurationIdTypeAbstractPartitionedGraphConfig. getValidatedEdgeIdType()Validates and return the ID type used for edges (checking if the type is compatible with the rest of the configuration)IdTypeGraphConfig. getValidatedEdgeIdType()Validates and return the ID type used for edges (checking if the type is compatible with the rest of the configuration)IdTypeAbstractPartitionedGraphConfig. getValidatedVertexIdType()Validates and return the ID type used for vertices (checking if the type is compatible with the rest of the configuration)IdTypeGraphConfig. getValidatedVertexIdType()Validates and return the ID type used for vertices (checking if the type is compatible with the rest of the configuration)IdTypeFileGraphConfig. getVertexIdType()type of the vertex ID.abstract IdTypeGraphConfig. getVertexIdType()Get the vertex ID type of this graph configurationIdTypePartitionedGraphConfig. getVertexIdType()type of the vertex ID.IdTypeRdfGraphConfig. getVertexIdType()type of the vertex ID.IdTypeTwoTablesRdbmsGraphConfig. getVertexIdType()type of the vertex ID.IdTypeTwoTablesTextGraphConfig. getVertexIdType()type of the vertex ID.Methods in oracle.pgx.config with parameters of type IdType Modifier and Type Method Description voidAbstractEntityProviderConfigBuilder. setDestinationVertexKeyType(IdType vertexIdType)TAbstractGraphConfigBuilder. setEdgeIdType(IdType edgeIdType)Sets the type of edge IDsTAbstractEntityProviderConfigBuilder. setKeyType(IdType keyType)Sets the type of vertex keysvoidAbstractEntityProviderConfigBuilder. setSourceVertexKeyType(IdType vertexIdType)TAbstractGraphConfigBuilder. setVertexIdType(IdType vertexIdType)Sets the type of vertex IDsRdfGraphConfigBuilderRdfGraphConfigBuilder. setVertexIdType(IdType vertexIdType)
-