Package | Description |
---|---|
org.h2.engine |
Contains high level classes of the database and classes that don't fit in another sub-package.
|
org.h2.expression |
Expressions include mathematical operations, conditions, simple values, and functions.
|
org.h2.mvstore.db |
Helper classes to use the MVStore in the H2 database.
|
org.h2.store |
Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa.
|
org.h2.table |
Classes related to a table and table meta data.
|
org.h2.tools |
Various tools.
|
org.h2.value |
Data type and value implementations.
|
Modifier and Type | Method and Description |
---|---|
CompareMode |
SessionRemote.getCompareMode() |
CompareMode |
Database.getCompareMode() |
Modifier and Type | Method and Description |
---|---|
void |
Database.setCompareMode(CompareMode compareMode) |
Constructor and Description |
---|
CompareLike(CompareMode compareMode,
String defaultEscape,
Expression left,
Expression right,
Expression escape,
boolean regexp) |
Constructor and Description |
---|
ValueDataType(CompareMode compareMode,
DataHandler handler,
int[] sortTypes) |
Modifier and Type | Method and Description |
---|---|
CompareMode |
DataHandler.getCompareMode()
Return compare mode.
|
Modifier and Type | Field and Description |
---|---|
protected CompareMode |
Table.compareMode
The compare mode used for this table.
|
Modifier and Type | Method and Description |
---|---|
CompareMode |
Table.getCompareMode() |
Modifier and Type | Method and Description |
---|---|
void |
RegularTable.setCompareMode(CompareMode compareMode) |
Modifier and Type | Method and Description |
---|---|
CompareMode |
Recover.getCompareMode() |
Modifier and Type | Class and Description |
---|---|
class |
CompareModeDefault
The default implementation of CompareMode.
|
class |
CompareModeIcu4J
An implementation of CompareMode that uses the ICU4J Collator.
|
Modifier and Type | Method and Description |
---|---|
static CompareMode |
CompareMode.getInstance(String name,
int strength)
Create a new compare mode with the given collator and strength.
|
static CompareMode |
CompareMode.getInstance(String name,
int strength,
boolean binaryUnsigned)
Create a new compare mode with the given collator and strength.
|
Modifier and Type | Method and Description |
---|---|
protected int |
ValueUuid.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueTimestampTimeZone.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueTimestamp.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueTime.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueStringIgnoreCase.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueString.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueShort.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueResultSet.compareSecure(Value v,
CompareMode mode) |
protected int |
ValueNull.compareSecure(Value v,
CompareMode mode) |
protected int |
ValueLong.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueLobDb.compareSecure(Value v,
CompareMode mode) |
protected int |
ValueLob.compareSecure(Value v,
CompareMode mode) |
protected int |
ValueInt.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueGeometry.compareSecure(Value v,
CompareMode mode) |
protected int |
ValueFloat.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueEnumBase.compareSecure(Value v,
CompareMode mode) |
protected int |
ValueEnum.compareSecure(Value v,
CompareMode mode) |
protected int |
ValueDouble.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueDecimal.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueDate.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueBytes.compareSecure(Value v,
CompareMode mode) |
protected int |
ValueByte.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueBoolean.compareSecure(Value o,
CompareMode mode) |
protected int |
ValueArray.compareSecure(Value o,
CompareMode mode) |
protected abstract int |
Value.compareSecure(Value v,
CompareMode mode)
Compare the value with another value of the same type.
|
int |
Value.compareTo(Value v,
CompareMode mode)
Compare this value against another value using the specified compare
mode.
|
int |
Value.compareTypeSafe(Value v,
CompareMode mode)
Compare this value against another value given that the values are of the
same data type.
|
Copyright © 2020 JBoss by Red Hat. All rights reserved.