Package | Description |
---|---|
org.h2.engine |
Contains high level classes of the database and classes that don't fit in another sub-package.
|
org.h2.table |
Classes related to a table and table meta data.
|
org.h2.util |
Internal utility classes.
|
org.h2.value |
Data type and value implementations.
|
Modifier and Type | Method and Description |
---|---|
static Mode |
Mode.getInstance(String name)
Get the mode with the given name.
|
Mode |
Database.getMode() |
static Mode |
Mode.getRegular() |
Modifier and Type | Method and Description |
---|---|
void |
Database.setMode(Mode mode) |
Modifier and Type | Method and Description |
---|---|
Value |
Column.convert(Value v,
Mode mode)
Convert a value to this column's type using the given
Mode . |
Modifier and Type | Method and Description |
---|---|
static Value |
DateTimeUtils.parseTimestamp(String s,
Mode mode,
boolean withTimeZone)
Parses timestamp value from the specified string.
|
Modifier and Type | Method and Description |
---|---|
Value |
Value.convertTo(int targetType,
int precision,
Mode mode)
Compare a value to the specified type.
|
Value |
ValueNull.convertTo(int type,
int precision,
Mode mode,
Object column,
String[] enumerators) |
Value |
ValueLobDb.convertTo(int t,
int precision,
Mode mode,
Object column,
String[] enumerators)
Convert a lob to another data type.
|
Value |
ValueLob.convertTo(int t,
int precision,
Mode mode,
Object column,
String[] enumerators)
Convert a lob to another data type.
|
Value |
ValueGeometry.convertTo(int targetType,
int precision,
Mode mode,
Object column,
String[] enumerators) |
Value |
Value.convertTo(int targetType,
int precision,
Mode mode,
Object column,
String[] enumerators)
Compare a value to the specified type.
|
static ValueStringFixed |
ValueStringFixed.get(String s,
int precision,
Mode mode)
Get or create a fixed length string value for the given string.
|
static DataType |
DataType.getTypeByName(String s,
Mode mode)
Get a data type object from a type name.
|
static ValueTimestamp |
ValueTimestamp.parse(String s,
Mode mode)
Parse a string to a ValueTimestamp, using the given
Mode . |
Copyright © 2020 JBoss by Red Hat. All rights reserved.