BigDecimalBinding
, BigIntegerBinding
, BooleanBinding
, ByteArrayBinding
, ByteBinding
, CharacterBinding
, DoubleBinding
, FloatBinding
, IntegerBinding
, LongBinding
, PackedIntegerBinding
, PackedLongBinding
, RecordNumberBinding
, SerialBinding
, ShortBinding
, SortedBigDecimalBinding
, SortedDoubleBinding
, SortedFloatBinding
, SortedPackedIntegerBinding
, SortedPackedLongBinding
, StringBinding
, TupleBinding
, TupleInputBinding
, TupleMarshalledBinding
public interface EntryBinding<E>
WARNING: Binding instances are typically shared by multiple threads and binding methods are called without any special synchronization. Therefore, bindings must be thread safe. In general no shared state should be used and any caching of computed values must be done with proper synchronization.
Modifier and Type | Method | Description |
---|---|---|
E |
entryToObject(DatabaseEntry entry) |
Converts a entry buffer into an Object.
|
void |
objectToEntry(E object,
DatabaseEntry entry) |
Converts an Object into a entry buffer.
|
E entryToObject(DatabaseEntry entry)
entry
- is the source entry buffer.void objectToEntry(E object, DatabaseEntry entry)
object
- is the source Object.entry
- is the destination entry buffer.Copyright (c) 1996, 2020 Oracle and/or its affiliates. All rights reserved.