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 and Description |
---|---|
E |
entryToObject(SDatabaseEntry entry)
Converts a entry buffer into an Object.
|
void |
objectToEntry(E object,
SDatabaseEntry entry)
Converts an Object into a entry buffer.
|
E entryToObject(SDatabaseEntry entry)
entry
- is the source entry buffer.void objectToEntry(E object, SDatabaseEntry entry)
object
- is the source Object.entry
- is the destination entry buffer.Copyright (c) 2016, 2019 Oracle and/or its affiliates. All rights reserved.