Uses of Class
org.apache.openjpa.lib.conf.Value
-
Packages that use Value Package Description org.apache.openjpa.conf OpenJPA Configurationorg.apache.openjpa.jdbc.conf OpenJPA-JDBC Configurationorg.apache.openjpa.lib.conf Configuration Frameworkorg.apache.openjpa.meta OpenJPA Metadataorg.apache.openjpa.persistence OpenJPA JPA -
-
Uses of Value in org.apache.openjpa.conf
Subclasses of Value in org.apache.openjpa.conf Modifier and Type Class Description class
BrokerFactoryValue
Value type used to represent theBrokerFactory
.class
BrokerValue
CustomPluginValue
that can efficiently createBrokerImpl
instances.class
CacheMarshallersValue
A configuration value for handling and accessing cache marshallers.class
MetaDataRepositoryValue
APluginValue
that interacts with theCacheMarshaller
to cache the metadata repository between executions.class
QueryCompilationCacheValue
A cache of compiled queries.class
RemoteCommitProviderValue
Value type used to represent aRemoteCommitProvider
.class
SeqValue
Value type used to represent a sequence.class
SpecificationPlugin
A plug-in for Specification that enforces certain overwriting rules.Methods in org.apache.openjpa.conf with parameters of type Value Modifier and Type Method Description void
SpecificationPlugin. valueChanged(Value value)
-
Uses of Value in org.apache.openjpa.jdbc.conf
Subclasses of Value in org.apache.openjpa.jdbc.conf Modifier and Type Class Description class
FetchModeValue
Value type used to represent fetch modes.class
JDBCSeqValue
Adds additional aliases to baseSeqValue
.class
MappingFactoryValue
Handles the complex logic of creating aMetaDataFactory
for combined metadata and mapping.class
MappingRepositoryValue
Handles the complex logic of creating aMappingRepository
for a given configuration. -
Uses of Value in org.apache.openjpa.lib.conf
Subclasses of Value in org.apache.openjpa.lib.conf Modifier and Type Class Description class
BooleanValue
A booleanValue
.class
ClassListValue
class
DoubleValue
A doubleValue
.class
FileValue
AFile
Value
.class
IntValue
An intValue
.class
ObjectValue
An objectValue
.class
PluginListValue
A list of plugins.class
PluginValue
A pluginValue
consisting of plugin name and properties.class
StringListValue
A comma-separated list of string values.class
StringValue
A stringValue
.Methods in org.apache.openjpa.lib.conf with type parameters of type Value Modifier and Type Method Description <T extends Value>
TConfiguration. addValue(T val)
Add the given value to the set of configuration properties.<T extends Value>
TConfigurationImpl. addValue(T val)
Methods in org.apache.openjpa.lib.conf that return Value Modifier and Type Method Description Value
Configuration. getValue(java.lang.String property)
Return theValue
for the given property, or null if none.Value
ConfigurationImpl. getValue(java.lang.String property)
Gets the registered Value for the given propertyName.Value[]
Configuration. getValues()
Return the set of allValue
s.Value[]
ConfigurationImpl. getValues()
Methods in org.apache.openjpa.lib.conf with parameters of type Value Modifier and Type Method Description static boolean
Configurations. containsProperty(Value value, java.util.Map props)
Test whether the map contains the given partial key, prefixed with any possible configuration prefix.boolean
Configuration. removeValue(Value val)
Remove the given value from the set of configuration properties.boolean
ConfigurationImpl. removeValue(Value val)
void
ConfigurationImpl. valueChanged(Value val)
void
ValueListener. valueChanged(Value val)
Callback used byValue
objects to notify listener of change. -
Uses of Value in org.apache.openjpa.meta
Methods in org.apache.openjpa.meta with parameters of type Value Modifier and Type Method Description void
ClassMetaData. valueChanged(Value val)
-
Uses of Value in org.apache.openjpa.persistence
Subclasses of Value in org.apache.openjpa.persistence Modifier and Type Class Description class
EntityManagerFactoryValue
Plugin type used to represent theEntityManagerFactory
.
-