Package | Description |
---|---|
oracle.pgx.config |
This package contains all configuration-related classes of PGX.
|
Modifier and Type | Method and Description |
---|---|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.clear()
Clears all values from the builder
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.putAll(GraphPropertyConfig config)
Puts all values from the given config into this builder
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.putAll(java.util.Map<GraphPropertyConfig.Field,java.lang.Object> values)
Puts all values from the given map into this builder.
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.setColumn(java.lang.Object column)
name or index (starting from 0) of the column holding the property data.
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.setDefault(java.lang.Object defaultVal)
default value to be assigned to this property if datasource does not provide it.
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.setDimension(int dimension)
dimension of property
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.setFormat(java.lang.String... format)
array of formats of property
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.setMaxDistinctStringsPerPool(int maxDistinctStringsPerPool)
[only relevant if string_pooling_strategy is indexed] amount of distinct strings per property after which to stop pooling.
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.setName(java.lang.String name)
name of property
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.setStores(java.lang.Object... stores)
A list of storage identifiers that indicate where this property resides.
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.setStringPoolingStrategy(StringPoolingStrategy stringPoolingStrategy)
[only relevant if use_string_pool is enabled] which string pooling strategy to use.
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.setType(PropertyType type)
type of property (Note: date is deprecated, use one of local_date / time / timestamp / time_with_timezone / timestamp_with_timezone instead).
|
GraphPropertyConfigBuilder |
GraphPropertyConfigBuilder.setUseStringPool(boolean useStringPool)
If
true , PGX will store string properties in a pool in order to consume less memory on string properties |
Modifier and Type | Method and Description |
---|---|
static GraphPropertyConfig |
GraphPropertyConfigBuilder.buildGraphPropertyConfig(java.util.function.Consumer<GraphPropertyConfigBuilder> builderSetup)
Builds a
GraphPropertyConfig in-place |
Constructor and Description |
---|
GraphPropertyConfigBuilder(GraphPropertyConfigBuilder builder)
Constructs a GraphPropertyConfigBuilder initialized with the values from the given builder
|
Copyright © 2015 - 2020 Oracle and/or its affiliates. All Rights Reserved.