|
Berkeley DB version 5.3.28 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.sleepycat.collections.TupleSerialFactory
public class TupleSerialFactory
Creates stored collections having tuple keys and serialized entity values. The entity classes must be Serializable and must implement the MarshalledTupleKeyEntity interfaces. The key classes must either implement the MarshalledTupleEntry interface or be one of the Java primitive type classes. Underlying binding objects are created automatically.
Constructor Summary | |
---|---|
TupleSerialFactory(ClassCatalog catalog)
Creates a tuple-serial factory for given environment and class catalog. |
Method Summary | ||
---|---|---|
ClassCatalog |
getCatalog()
Returns the class catalog associated with this factory. |
|
|
getEntityBinding(Class<V> baseClass)
|
|
|
getKeyCreator(Class<V> valueBaseClass,
String keyName)
Creates a SecondaryKeyCreator object for use in configuring
a SecondaryDatabase . |
|
|
newMap(Database db,
Class<K> keyClass,
Class<V> valueBaseClass,
boolean writeAllowed)
Creates a map from a previously opened Database object. |
|
|
newSortedMap(Database db,
Class<K> keyClass,
Class<V> valueBaseClass,
boolean writeAllowed)
Creates a sorted map from a previously opened Database object. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TupleSerialFactory(ClassCatalog catalog)
Method Detail |
---|
public final ClassCatalog getCatalog()
public <K,V extends MarshalledTupleKeyEntity> StoredMap<K,V> newMap(Database db, Class<K> keyClass, Class<V> valueBaseClass, boolean writeAllowed)
db
- the previously opened Database object.keyClass
- is the class used for map keys. It must implement the
MarshalledTupleEntry
interface or be one of the Java primitive
type classes.valueBaseClass
- the base class of the entity values for this
store. It must implement the MarshalledTupleKeyEntity
interface.writeAllowed
- is true to create a read-write collection or false
to create a read-only collection.public <K,V extends MarshalledTupleKeyEntity> StoredSortedMap<K,V> newSortedMap(Database db, Class<K> keyClass, Class<V> valueBaseClass, boolean writeAllowed)
db
- the previously opened Database object.keyClass
- is the class used for map keys. It must implement the
MarshalledTupleEntry
interface or be one of the Java primitive
type classes.valueBaseClass
- the base class of the entity values for this
store. It must implement the MarshalledTupleKeyEntity
interface.writeAllowed
- is true to create a read-write collection or false
to create a read-only collection.public <V extends MarshalledTupleKeyEntity> TupleSerialMarshalledKeyCreator<V> getKeyCreator(Class<V> valueBaseClass, String keyName)
SecondaryKeyCreator
object for use in configuring
a SecondaryDatabase
. The returned object implements
the SecondaryKeyCreator
interface.
valueBaseClass
- the base class of the entity values for this
store. It must implement the MarshalledTupleKeyEntity
interface.keyName
- is the key name passed to the MarshalledTupleKeyEntity.marshalSecondaryKey(java.lang.String, com.sleepycat.bind.tuple.TupleOutput)
method to identify the
secondary key.public <V extends MarshalledTupleKeyEntity> TupleSerialMarshalledBinding<V> getEntityBinding(Class<V> baseClass)
|
Berkeley DB version 5.3.28 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |