Package | Description |
---|---|
com.amazon.carbonado.info |
Introspection support for Storables.
|
com.amazon.carbonado.qe |
Support for implementing a Query Engine.
|
com.amazon.carbonado.repo.jdbc |
Repository implementation that connects to an external SQL database via
JDBC.
|
Modifier and Type | Method and Description |
---|---|
static <S extends Storable> |
StorableIntrospector.examine(java.lang.Class<S> type)
Examines the given class and returns a StorableInfo describing it.
|
Modifier and Type | Method and Description |
---|---|
static <S extends Storable> |
OrderedProperty.parse(StorableInfo<S> info,
java.lang.String str)
Parses an ordering property, which may start with a '+' or '-' to
indicate direction.
|
static <S extends Storable> |
ChainedProperty.parse(StorableInfo<S> info,
java.lang.String str)
Parses a chained property.
|
static <S extends Storable> |
OrderedProperty.parse(StorableInfo<S> info,
java.lang.String str,
Direction defaultDirection)
Parses an ordering property, which may start with a '+' or '-' to
indicate direction.
|
static <S extends Storable> |
StorableIndex.parseNameDescriptor(java.lang.String desc,
StorableInfo<S> info)
Parses an index descriptor and returns an index object.
|
Modifier and Type | Method and Description |
---|---|
void |
StorableIndexSet.addAlternateKeys(StorableInfo<S> info)
Adds all of the alternate keys of the given storable as indexes by
calling
addKey . |
void |
StorableIndexSet.addIndexes(StorableInfo<S> info)
Adds all the indexes of the given storable.
|
void |
StorableIndexSet.addIndexes(StorableInfo<S> info,
Direction defaultDirection)
Adds all the indexes of the given storable.
|
void |
StorableIndexSet.addPrimaryKey(StorableInfo<S> info)
Adds the primary key of the given storable as indexes by calling
addKey . |
StorableIndex<S> |
StorableIndexSet.findPrimaryKeyIndex(StorableInfo<S> info)
Finds the best index to represent the primary key.
|
void |
StorableIndexSet.uniquify(StorableInfo<S> info)
Augment non-unique indexes with primary key properties, thus making them
unique.
|
Modifier and Type | Interface and Description |
---|---|
interface |
JDBCStorableInfo<S extends Storable>
Contains all the metadata describing a specific
Storable type as
needed by JDBCRepository. |
Copyright © 2006-2013 Amazon Technologies, Inc.. All Rights Reserved.