Package | Description |
---|---|
org.hibernate.c3p0.internal |
Implementation of ConnectionProvider using the c3p0 Connection pool.
|
org.hibernate.cache.ehcache |
Defines the integration with Ehcache as a second-level cache service.
|
org.hibernate.envers.internal | |
org.hibernate.id |
This package contains internal implementation classes for the
main API interfaces.
|
org.hibernate.id.enhanced |
Enhanced/improved versions of table and sequence based identifier generators targeting portability and unified
configuration
|
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
org.hibernate.jpa.internal | |
org.hibernate.proxool.internal |
Implementation of ConnectionProvider using the proxool Connection pool.
|
Modifier and Type | Method and Description |
---|---|
void |
C3P0MessageLogger_$logger.pooledOptimizerReportedInitialValue(IntegralDataTypeHolder arg0) |
Modifier and Type | Method and Description |
---|---|
void |
EhCacheMessageLogger_$logger.pooledOptimizerReportedInitialValue(IntegralDataTypeHolder arg0) |
Modifier and Type | Method and Description |
---|---|
void |
EnversMessageLogger_$logger.pooledOptimizerReportedInitialValue(IntegralDataTypeHolder arg0) |
Modifier and Type | Class and Description |
---|---|
static class |
IdentifierGeneratorHelper.BasicHolder |
static class |
IdentifierGeneratorHelper.BigDecimalHolder |
static class |
IdentifierGeneratorHelper.BigIntegerHolder |
Modifier and Type | Method and Description |
---|---|
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BasicHolder.add(long addend) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigIntegerHolder.add(long increment) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigDecimalHolder.add(long increment) |
IntegralDataTypeHolder |
IntegralDataTypeHolder.add(long addend)
Perform an addition
|
protected IntegralDataTypeHolder |
SequenceGenerator.buildHolder() |
protected IntegralDataTypeHolder |
TableGenerator.buildHolder()
Deprecated.
|
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BasicHolder.copy() |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigIntegerHolder.copy() |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigDecimalHolder.copy() |
IntegralDataTypeHolder |
IntegralDataTypeHolder.copy()
Make a copy of this holder.
|
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BasicHolder.decrement() |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigIntegerHolder.decrement() |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigDecimalHolder.decrement() |
IntegralDataTypeHolder |
IntegralDataTypeHolder.decrement()
Equivalent to a -- operation
|
protected IntegralDataTypeHolder |
SequenceGenerator.generateHolder(SessionImplementor session) |
protected IntegralDataTypeHolder |
TableGenerator.generateHolder(SessionImplementor session)
Deprecated.
|
static IntegralDataTypeHolder |
IdentifierGeneratorHelper.getIntegralDataTypeHolder(Class integralType) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BasicHolder.increment() |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigIntegerHolder.increment() |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigDecimalHolder.increment() |
IntegralDataTypeHolder |
IntegralDataTypeHolder.increment()
Equivalent to a ++ operation
|
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BasicHolder.initialize(long value) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigIntegerHolder.initialize(long value) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigDecimalHolder.initialize(long value) |
IntegralDataTypeHolder |
IntegralDataTypeHolder.initialize(long value)
Initialize the internal value from the given primitive long.
|
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BasicHolder.initialize(ResultSet resultSet,
long defaultValue) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigIntegerHolder.initialize(ResultSet resultSet,
long defaultValue) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigDecimalHolder.initialize(ResultSet resultSet,
long defaultValue) |
IntegralDataTypeHolder |
IntegralDataTypeHolder.initialize(ResultSet resultSet,
long defaultValue)
Initialize the internal value from the given result set, using the specified default value
if we could not get a value from the result set (aka result was null).
|
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BasicHolder.multiplyBy(IntegralDataTypeHolder factor) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigIntegerHolder.multiplyBy(IntegralDataTypeHolder factor) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigDecimalHolder.multiplyBy(IntegralDataTypeHolder factor) |
IntegralDataTypeHolder |
IntegralDataTypeHolder.multiplyBy(IntegralDataTypeHolder factor)
Perform a multiplication.
|
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BasicHolder.multiplyBy(long factor) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigIntegerHolder.multiplyBy(long factor) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigDecimalHolder.multiplyBy(long factor) |
IntegralDataTypeHolder |
IntegralDataTypeHolder.multiplyBy(long factor)
Perform a multiplication.
|
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BasicHolder.subtract(long subtrahend) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigIntegerHolder.subtract(long subtrahend) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigDecimalHolder.subtract(long subtrahend) |
IntegralDataTypeHolder |
IntegralDataTypeHolder.subtract(long subtrahend)
Perform a subtraction
|
Modifier and Type | Method and Description |
---|---|
boolean |
IdentifierGeneratorHelper.BasicHolder.eq(IntegralDataTypeHolder other) |
boolean |
IdentifierGeneratorHelper.BigIntegerHolder.eq(IntegralDataTypeHolder other) |
boolean |
IdentifierGeneratorHelper.BigDecimalHolder.eq(IntegralDataTypeHolder other) |
boolean |
IntegralDataTypeHolder.eq(IntegralDataTypeHolder other)
Perform an equality comparison check
|
static BigDecimal |
IdentifierGeneratorHelper.extractBigDecimal(IntegralDataTypeHolder holder) |
static BigInteger |
IdentifierGeneratorHelper.extractBigInteger(IntegralDataTypeHolder holder) |
static long |
IdentifierGeneratorHelper.extractLong(IntegralDataTypeHolder holder) |
boolean |
IdentifierGeneratorHelper.BasicHolder.gt(IntegralDataTypeHolder other) |
boolean |
IdentifierGeneratorHelper.BigIntegerHolder.gt(IntegralDataTypeHolder other) |
boolean |
IdentifierGeneratorHelper.BigDecimalHolder.gt(IntegralDataTypeHolder other) |
boolean |
IntegralDataTypeHolder.gt(IntegralDataTypeHolder other)
Perform a "greater than" comparison check.
|
boolean |
IdentifierGeneratorHelper.BasicHolder.lt(IntegralDataTypeHolder other) |
boolean |
IdentifierGeneratorHelper.BigIntegerHolder.lt(IntegralDataTypeHolder other) |
boolean |
IdentifierGeneratorHelper.BigDecimalHolder.lt(IntegralDataTypeHolder other) |
boolean |
IntegralDataTypeHolder.lt(IntegralDataTypeHolder other)
Perform a "less than" comparison check.
|
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BasicHolder.multiplyBy(IntegralDataTypeHolder factor) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigIntegerHolder.multiplyBy(IntegralDataTypeHolder factor) |
IntegralDataTypeHolder |
IdentifierGeneratorHelper.BigDecimalHolder.multiplyBy(IntegralDataTypeHolder factor) |
IntegralDataTypeHolder |
IntegralDataTypeHolder.multiplyBy(IntegralDataTypeHolder factor)
Perform a multiplication.
|
Modifier and Type | Method and Description |
---|---|
IntegralDataTypeHolder |
HiLoOptimizer.getHiValue()
Getter for property 'upperLimit'.
|
IntegralDataTypeHolder |
HiLoOptimizer.getLastSourceValue() |
IntegralDataTypeHolder |
PooledOptimizer.getLastSourceValue() |
IntegralDataTypeHolder |
PooledLoOptimizer.getLastSourceValue() |
IntegralDataTypeHolder |
Optimizer.getLastSourceValue()
A common means to access the last value obtained from the underlying
source.
|
IntegralDataTypeHolder |
LegacyHiLoAlgorithmOptimizer.getLastSourceValue() |
IntegralDataTypeHolder |
NoopOptimizer.getLastSourceValue() |
IntegralDataTypeHolder |
HiLoOptimizer.getLastValue()
Getter for property 'lastValue'.
|
IntegralDataTypeHolder |
PooledOptimizer.getLastValue()
Getter for property 'lastValue'.
|
IntegralDataTypeHolder |
LegacyHiLoAlgorithmOptimizer.getLastValue()
Getter for property 'lastValue'.
|
IntegralDataTypeHolder |
AccessCallback.getNextValue()
Retrieve the next value from the underlying source.
|
Modifier and Type | Method and Description |
---|---|
void |
CoreMessageLogger.pooledOptimizerReportedInitialValue(IntegralDataTypeHolder value) |
void |
CoreMessageLogger_$logger.pooledOptimizerReportedInitialValue(IntegralDataTypeHolder value) |
Modifier and Type | Method and Description |
---|---|
void |
EntityManagerMessageLogger_$logger.pooledOptimizerReportedInitialValue(IntegralDataTypeHolder arg0) |
Modifier and Type | Method and Description |
---|---|
void |
ProxoolMessageLogger_$logger.pooledOptimizerReportedInitialValue(IntegralDataTypeHolder arg0) |
Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.