Uses of Class
oracle.pgx.config.EntityProviderConfig
-
Packages that use EntityProviderConfig Package Description oracle.pgx.api.graphalteration This package contains the APIs for the alterGraph mutation.oracle.pgx.config This package contains all configuration-related classes of PGX. -
-
Uses of EntityProviderConfig in oracle.pgx.api.graphalteration
Methods in oracle.pgx.api.graphalteration with parameters of type EntityProviderConfig Modifier and Type Method Description GraphAlterationBuilder
GraphAlterationBuilder. addEdgeProvider(EntityProviderConfig edgeProviderConfig)
Adds an edge provider specified by the provided configurationGraphAlterationBuilder
GraphAlterationBuilder. addVertexProvider(EntityProviderConfig vertexProviderConfig)
Adds a vertex provider specified by the provided configuration -
Uses of EntityProviderConfig in oracle.pgx.config
Classes in oracle.pgx.config with type parameters of type EntityProviderConfig Modifier and Type Class Description class
AbstractEntityProviderConfigBuilder<T extends AbstractEntityProviderConfigBuilder<T,GTC>,GTC extends EntityProviderConfig>
base class for entity provider configuration builder classesclass
AbstractEntityProviderConfigFactory<T extends EntityProviderConfig>
Base factory class for creating entity provider configuration objects.Subclasses of EntityProviderConfig in oracle.pgx.config Modifier and Type Class Description class
AbstractEsEntityProviderConfig
class
AbstractFileEntityProviderConfig
Abstract super-class for all file-based provider configsclass
AbstractRdbmsEntityProviderConfig
class
EsEntityProviderConfig
PGX Engine Es Entity Provider Configclass
FileEntityProviderConfig
PGX Engine File Entity Provider Configclass
RdbmsEntityProviderConfig
PGX Engine Rdbms Entity Provider ConfigMethods in oracle.pgx.config that return types with arguments of type EntityProviderConfig Modifier and Type Method Description abstract java.util.List<EntityProviderConfig>
AbstractPartitionedGraphConfig. getEdgeProviders()
Get the vertex providers of this graph configurationjava.util.List<EntityProviderConfig>
PartitionedGraphConfig. getEdgeProviders()
list of edge providers in this graphabstract java.util.List<EntityProviderConfig>
AbstractPartitionedGraphConfig. getVertexProviders()
Get the vertex providers of this graph configurationjava.util.List<EntityProviderConfig>
PartitionedGraphConfig. getVertexProviders()
list of vertex providers in this graphMethods in oracle.pgx.config with parameters of type EntityProviderConfig Modifier and Type Method Description PartitionedGraphConfigBuilder
PartitionedGraphConfigBuilder. addEdgeProvider(EntityProviderConfig provider)
Adds a edge provider to the graphPartitionedGraphConfigBuilder
PartitionedGraphConfigBuilder. addVertexProvider(EntityProviderConfig provider)
Adds a vertex provider to the graphT
AbstractEntityProviderConfigBuilder. copyBaseFrom(EntityProviderConfig providerConfig)
Sets this builder with the values of the given provider config, this only includes base settings (format, temporal formats, vertex properties, edge properties, loading configuration and error handling configuration).
-