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.
|
Modifier and Type | Method and Description |
---|---|
GraphAlterationEmptyVertexProviderBuilder |
GraphAlterationEmptyVertexProviderBuilder.addProperties(GraphPropertyConfig[] configs)
Adds properties from the different property configurations
|
GraphAlterationEmptyEdgeProviderBuilder |
GraphAlterationEmptyEdgeProviderBuilder.addProperties(GraphPropertyConfig[] configs)
Adds properties from the different property configurations
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.addProperties(GraphPropertyConfig[] configs)
Adds properties from the different property configurations
|
GraphAlterationEmptyVertexProviderBuilder |
GraphAlterationEmptyVertexProviderBuilder.addProperty(GraphPropertyConfig config)
Adds a property from the property configuration
|
GraphAlterationEmptyEdgeProviderBuilder |
GraphAlterationEmptyEdgeProviderBuilder.addProperty(GraphPropertyConfig config)
Adds a property from the property configuration
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.addProperty(GraphPropertyConfig config)
Adds a property from the property configuration
|
Modifier and Type | Method and Description |
---|---|
GraphAlterationEmptyVertexProviderBuilder |
GraphAlterationEmptyVertexProviderBuilder.addProperties(java.util.List<GraphPropertyConfig> configs)
Adds properties from the different property configurations
|
GraphAlterationEmptyEdgeProviderBuilder |
GraphAlterationEmptyEdgeProviderBuilder.addProperties(java.util.List<GraphPropertyConfig> configs)
Adds properties from the different property configurations
|
GraphAlterationEmptyProviderBuilder |
GraphAlterationEmptyProviderBuilder.addProperties(java.util.List<GraphPropertyConfig> configs)
Adds properties from the different property configurations
|
Modifier and Type | Method and Description |
---|---|
GraphPropertyConfig |
GraphPropertyConfigBuilder.build()
Builds the GraphPropertyConfig with a
parentPath of null . |
GraphPropertyConfig |
GraphPropertyConfigBuilder.build(java.lang.String parentPath)
Builds the GraphPropertyConfig.
|
static GraphPropertyConfig |
GraphPropertyConfigBuilder.buildGraphPropertyConfig(java.util.function.Consumer<GraphPropertyConfigBuilder> builderSetup)
Builds a
GraphPropertyConfig in-place |
static GraphPropertyConfig |
GraphPropertyConfig.parse(java.io.InputStream is, boolean strict, java.lang.String parentPath)
Parses an input stream.
|
static GraphPropertyConfig |
GraphPropertyConfig.parse(java.util.Map<java.lang.String,java.lang.Object> raw, boolean strict, java.lang.String parentPath)
Parses a raw key/value mapping.
|
static GraphPropertyConfig |
GraphPropertyConfig.parse(java.util.Properties props, boolean strict)
Parses a properties file.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<GraphPropertyConfig> |
PgHbaseGraphConfig.getEdgeProps()
specification of edge properties associated with graph
|
java.util.List<GraphPropertyConfig> |
FileGraphConfig.getEdgeProps()
specification of edge properties associated with graph
|
java.util.List<GraphPropertyConfig> |
PgNosqlGraphConfig.getEdgeProps()
specification of edge properties associated with graph
|
java.util.List<GraphPropertyConfig> |
PgRdbmsGraphConfig.getEdgeProps()
specification of edge properties associated with graph
|
java.util.List<GraphPropertyConfig> |
TwoTablesTextGraphConfig.getEdgeProps()
specification of edge properties associated with graph
|
java.util.List<GraphPropertyConfig> |
RdfGraphConfig.getEdgeProps()
specification of edge properties associated with graph
|
abstract java.util.List<GraphPropertyConfig> |
GraphConfig.getEdgeProps()
Get the vertex properties of this graph configuration
|
java.util.List<GraphPropertyConfig> |
AbstractPartitionedGraphConfig.getEdgeProps() |
java.util.List<GraphPropertyConfig> |
TwoTablesRdbmsGraphConfig.getEdgeProps()
specification of edge properties associated with graph
|
abstract java.util.List<GraphPropertyConfig> |
EntityProviderConfig.getProps()
Get the properties of this provider configuration
|
java.util.List<GraphPropertyConfig> |
EsEntityProviderConfig.getProps()
specification of the properties associated with this entity provider
|
java.util.List<GraphPropertyConfig> |
RdbmsEntityProviderConfig.getProps()
specification of the properties associated with this entity provider
|
java.util.List<GraphPropertyConfig> |
FileEntityProviderConfig.getProps()
specification of the properties associated with this entity provider
|
java.util.List<GraphPropertyConfig> |
PgHbaseGraphConfig.getVertexProps()
specification of vertex properties associated with graph
|
java.util.List<GraphPropertyConfig> |
FileGraphConfig.getVertexProps()
specification of vertex properties associated with graph
|
java.util.List<GraphPropertyConfig> |
PgNosqlGraphConfig.getVertexProps()
specification of vertex properties associated with graph
|
java.util.List<GraphPropertyConfig> |
PgRdbmsGraphConfig.getVertexProps()
specification of vertex properties associated with graph
|
java.util.List<GraphPropertyConfig> |
TwoTablesTextGraphConfig.getVertexProps()
specification of vertex properties associated with graph
|
java.util.List<GraphPropertyConfig> |
RdfGraphConfig.getVertexProps()
specification of vertex properties associated with graph
|
abstract java.util.List<GraphPropertyConfig> |
GraphConfig.getVertexProps()
Get the vertex properties of this graph configuration
|
java.util.List<GraphPropertyConfig> |
AbstractPartitionedGraphConfig.getVertexProps() |
java.util.List<GraphPropertyConfig> |
TwoTablesRdbmsGraphConfig.getVertexProps()
specification of vertex properties associated with graph
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<java.time.format.DateTimeFormatter> |
GraphFormatConfig.getFormats(GraphPropertyConfig graphPropertyConfig) |
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.putAll(GraphPropertyConfig config)
Puts all values from the given config into this builder
|
Constructor and Description |
---|
GraphPropertyConfigBuilder(GraphPropertyConfig config)
Constructs a GraphPropertyConfigBuilder initialized with the values from the given config
|