Package | Description |
---|---|
oracle.pgx.config |
This package contains all configuration-related classes of PGX.
|
Modifier and Type | Method and Description |
---|---|
PreparedQueryArgumentConfig |
PreparedQueryArgumentConfigBuilder.build()
Builds the PreparedQueryArgumentConfig with a
parentPath of null . |
PreparedQueryArgumentConfig |
PreparedQueryArgumentConfigBuilder.build(java.lang.String parentPath)
Builds the PreparedQueryArgumentConfig.
|
static PreparedQueryArgumentConfig |
PreparedQueryArgumentConfigBuilder.buildPreparedQueryArgumentConfig(java.util.function.Consumer<PreparedQueryArgumentConfigBuilder> builderSetup)
Builds a
PreparedQueryArgumentConfig in-place |
static PreparedQueryArgumentConfig |
PreparedQueryArgumentConfig.parse(java.io.InputStream is, boolean strict, java.lang.String parentPath)
Parses an input stream.
|
static PreparedQueryArgumentConfig |
PreparedQueryArgumentConfig.parse(java.util.Map<java.lang.String,java.lang.Object> raw, boolean strict, java.lang.String parentPath)
Parses a raw key/value mapping.
|
static PreparedQueryArgumentConfig |
PreparedQueryArgumentConfig.parse(java.util.Properties props, boolean strict)
Parses a properties file.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<PreparedQueryArgumentConfig> |
PreparedQueryConfig.getArguments()
arguments for the query
|
Modifier and Type | Method and Description |
---|---|
PreparedQueryArgumentConfigBuilder |
PreparedQueryArgumentConfigBuilder.putAll(PreparedQueryArgumentConfig config)
Puts all values from the given config into this builder
|
Constructor and Description |
---|
PreparedQueryArgumentConfigBuilder(PreparedQueryArgumentConfig config)
Constructs a PreparedQueryArgumentConfigBuilder initialized with the values from the given config
|