- DatatypeConvert - Class in net.as_development.asdk.db_service.impl.backend.mongodb
-
TODO document me
- DatatypeConvert() - Constructor for class net.as_development.asdk.db_service.impl.backend.mongodb.DatatypeConvert
-
create new instance.
- DB - Class in net.as_development.asdk.db_service.impl
-
Base for all implementations of the interface IDB.
- DB() - Constructor for class net.as_development.asdk.db_service.impl.DB
-
create new instance.
- DB_PASSWORD - Static variable in class net.as_development.asdk.db_service.impl.PersistenceUnitConst
-
- DB_SCHEMA - Static variable in class net.as_development.asdk.db_service.impl.PersistenceUnitConst
-
- DB_USER - Static variable in class net.as_development.asdk.db_service.impl.PersistenceUnitConst
-
- DBBackup - Class in net.as_development.asdk.db_service.impl.server
-
the try to automate backup of the whole product DB .-)
- DBBackup() - Constructor for class net.as_development.asdk.db_service.impl.server.DBBackup
-
- DBConstDefinitions - Class in net.as_development.asdk.api.db
-
Some useful definitions for DB related configurations.
- DBConstDefinitions() - Constructor for class net.as_development.asdk.api.db.DBConstDefinitions
-
- DBCreator - Class in net.as_development.asdk.db_service.impl.backend.creator
-
Provides more comfort around creating and updating DB schema.
- DBCreator() - Constructor for class net.as_development.asdk.db_service.impl.backend.creator.DBCreator
-
- DBCreator.EOperation - Enum in net.as_development.asdk.db_service.impl.backend.creator
-
- DBCreatorCommandLine - Class in net.as_development.asdk.db_service.impl.backend.creator
-
Knows all parameter supported by the command line for DBCreator implementation.
- DBCreatorCommandLine() - Constructor for class net.as_development.asdk.db_service.impl.backend.creator.DBCreatorCommandLine
-
- DBCreatorMain - Class in net.as_development.asdk.db_service.impl.backend.creator
-
- DBCreatorMain() - Constructor for class net.as_development.asdk.db_service.impl.backend.creator.DBCreatorMain
-
- DBItemBase - Class in net.as_development.asdk.db_service
-
A base class for all DB related implementations.
- DBItemBase() - Constructor for class net.as_development.asdk.db_service.DBItemBase
-
- DBPool - Class in net.as_development.asdk.db_service.impl
-
- DBPool() - Constructor for class net.as_development.asdk.db_service.impl.DBPool
-
- DBQuery<TEntity extends IEntity> - Class in net.as_development.asdk.db_service.impl
-
An implementation for the interface IDBQuery.
- DBQuery() - Constructor for class net.as_development.asdk.db_service.impl.DBQuery
-
- DBQueryTemplate<TEntity extends IEntity> - Class in net.as_development.asdk.db_service.impl
-
Because IDBQuery (implemented as class DBQuery) can't be used within multi-threaded
environments if it contains both (meta structure and real values) we split
those functionality into two pieces:
- the template part which contains all meta and static parts of a query
- the value part referring the template and adding real query values only
Where the template can be cached and used multi-threaded the value part
must not be cached.
- DBQueryTemplate(String, EntityMetaInfo) - Constructor for class net.as_development.asdk.db_service.impl.DBQueryTemplate
-
create new query instance and bind it to the right set of meta information.
- DBServer - Class in net.as_development.asdk.db_service.impl.server
-
The main implementation of the interface IDBServer.
- DBServer() - Constructor for class net.as_development.asdk.db_service.impl.server.DBServer
-
- DBServiceRegistryModule - Class in net.as_development.asdk.db_service
-
The service registry module for the db-service module.
- DBServiceRegistryModule() - Constructor for class net.as_development.asdk.db_service.DBServiceRegistryModule
-
- DecimalStringUtils - Class in net.as_development.asdk.db_service.impl.simpledb
-
TODO document me
- DecimalStringUtils(String, Class<? extends Number>) - Constructor for class net.as_development.asdk.db_service.impl.simpledb.DecimalStringUtils
-
- DecimalStringUtils(Number) - Constructor for class net.as_development.asdk.db_service.impl.simpledb.DecimalStringUtils
-
- DEFAULT_OFFSET - Static variable in class net.as_development.asdk.db_service.impl.NextToken
-
- DEFAULT_PAGESIZE - Static variable in class net.as_development.asdk.db_service.impl.NextToken
-
- deleteAllRows(Row) - Method in interface net.as_development.asdk.db_service.IDBBackend
-
must be overwritten by derived class to support deletion of
all entities (Means whole table of one entity type!)
- deleteAllRows(Row) - Method in class net.as_development.asdk.db_service.impl.backend.cache.CacheProvider
-
- deleteAllRows(Row) - Method in class net.as_development.asdk.db_service.impl.backend.mongodb.MongoDbProvider
-
- deleteAllRows(Row) - Method in class net.as_development.asdk.db_service.impl.simpledb.SimpleDbProvider
-
- deleteAllRows(Row) - Method in class net.as_development.asdk.db_service.impl.sql.SqlProvider
-
- deleteRows(List<Row>) - Method in interface net.as_development.asdk.db_service.IDBBackend
-
must be overwritten by derived class to support delete operation.
- deleteRows(List<Row>) - Method in class net.as_development.asdk.db_service.impl.backend.cache.CacheProvider
-
- deleteRows(List<Row>) - Method in class net.as_development.asdk.db_service.impl.backend.mongodb.MongoDbProvider
-
- deleteRows(List<Row>) - Method in class net.as_development.asdk.db_service.impl.simpledb.SimpleDbProvider
-
- deleteRows(List<Row>) - Method in class net.as_development.asdk.db_service.impl.sql.SqlProvider
-
- DOMAIN_QUOTE - Static variable in class net.as_development.asdk.db_service.impl.simpledb.SdbStatementGenerator
-
- doOperation(DBCreator.EOperation) - Method in class net.as_development.asdk.db_service.impl.backend.creator.DBCreator
-
do the requested operation.
- DynamicArrayList<E> - Class in net.as_development.asdk.db_service.impl
-
Extends the original ArrayList implementation in a way so it resize the
array automatic on calling indexed set/get methods.
- DynamicArrayList() - Constructor for class net.as_development.asdk.db_service.impl.DynamicArrayList
-
Create new array list with size of 0.
- DynamicArrayList(int) - Constructor for class net.as_development.asdk.db_service.impl.DynamicArrayList
-
Create new array list with size of X.
- Id - Variable in class net.as_development.asdk.db_service.EntityBase
-
- IDB - Interface in net.as_development.asdk.api.db
-
provides all functionality of an 'object oriented' data base abstraction layer.
- IDBBackend - Interface in net.as_development.asdk.db_service
-
Those interface will be expected by a backend implementation which
maps a new data base to our framework.
- IDBBackendQuery - Interface in net.as_development.asdk.db_service
-
wraps the IDBQuery to the back end implementation ...
- IDBPool - Interface in net.as_development.asdk.api.db
-
Obtaining an instance of type IDB can be tricky ... e.g. in case
performance aspects like multiplexing data bases or tables should be used
for performance reasons.
- IDBQuery<TEntity extends IEntity> - Interface in net.as_development.asdk.api.db
-
Queries can be used to search for data base entities which match to a set of
specified criteria.
- IDBSchema - Interface in net.as_development.asdk.api.db
-
Can be used to create needed DB structures.
- IDBServer - Interface in net.as_development.asdk.api.db
-
Can be used for setup/tear down of the DB server.
- IdStrategy - Class in net.as_development.asdk.db_service.impl
-
Provide several functions around DB identities.
- IdStrategy() - Constructor for class net.as_development.asdk.db_service.impl.IdStrategy
-
- IEntity - Interface in net.as_development.asdk.api.db
-
Handle all kinds of DB entities.
- importFromFile(String) - Method in class net.as_development.asdk.db_service.impl.backend.creator.CSVDump
-
import the given CSV directly from a local file.
- importFromResource(String) - Method in class net.as_development.asdk.db_service.impl.backend.creator.CSVDump
-
import the given CSV directly from a JAR resource.
- initRuntime() - Method in interface net.as_development.asdk.api.db.IDBServer
-
initialize the runtime.
- initRuntime() - Method in class net.as_development.asdk.db_service.impl.server.DBServer
-
- insertRows(List<Row>) - Method in interface net.as_development.asdk.db_service.IDBBackend
-
must be overwritten by derived class to support insert operation.
- insertRows(List<Row>) - Method in class net.as_development.asdk.db_service.impl.backend.cache.CacheProvider
-
- insertRows(List<Row>) - Method in class net.as_development.asdk.db_service.impl.backend.mongodb.MongoDbProvider
-
- insertRows(List<Row>) - Method in class net.as_development.asdk.db_service.impl.simpledb.SimpleDbProvider
-
- insertRows(List<Row>) - Method in class net.as_development.asdk.db_service.impl.sql.SqlProvider
-
- IPersistenceUnit - Interface in net.as_development.asdk.api.db
-
knows all informations regarding a persistence unit.
- IPersistenceUnitRegistryModule - Interface in net.as_development.asdk.api.db
-
Used for registration of persistence unit modules in a very ease way.
- isCompiled() - Method in class net.as_development.asdk.db_service.impl.DBQueryTemplate
-
- isEmpty() - Method in class net.as_development.asdk.db_service.impl.backend.creator.CommandLineBase
-
- isExpired() - Method in class net.as_development.asdk.db_service.EntityBase
-
- isFinal() - Method in class net.as_development.asdk.db_service.impl.QueryPart
-
- isIdReference() - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- isNullAllowed() - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- isPersistent() - Method in class net.as_development.asdk.db_service.EntityBase
-
- isPersistent() - Method in class net.as_development.asdk.db_service.impl.PersistentStateHandler
-
- ISqlGenerator - Interface in net.as_development.asdk.db_service
-
Implementations of those interface must be used to generate any kind of SQL
statements.
- ISqlGenerator.ESqlError - Enum in net.as_development.asdk.db_service
-
- ISqlGenerator.EStatementType - Enum in net.as_development.asdk.db_service
-
- isRemoved() - Method in class net.as_development.asdk.db_service.EntityBase
-
- isScrambleOn() - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- isSimpleType(Class<?>) - Static method in class net.as_development.asdk.db_service.impl.EntityClassParserAnnotations
-
- iterator() - Method in class net.as_development.asdk.db_service.impl.AttributeListMetaInfo
-
- SdbDatatypeConvert - Class in net.as_development.asdk.db_service.impl.simpledb
-
TODO document me
- SdbDatatypeConvert() - Constructor for class net.as_development.asdk.db_service.impl.simpledb.SdbDatatypeConvert
-
create new instance.
- SdbStatementGenerator - Class in net.as_development.asdk.db_service.impl.simpledb
-
TODO document me
- SdbStatementGenerator(boolean) - Constructor for class net.as_development.asdk.db_service.impl.simpledb.SdbStatementGenerator
-
- SEPARATOR - Static variable in class net.as_development.asdk.db_service.impl.backend.creator.CSVDump
-
- SEPARATOR - Static variable in class net.as_development.asdk.db_service.impl.NextToken
-
- set(int, E) - Method in class net.as_development.asdk.db_service.impl.DynamicArrayList
-
override the original set so the underlying array is resized automatic and
the new item is placed at the specified position.
- setAdminCredentials(String, String) - Method in class net.as_development.asdk.db_service.impl.backend.creator.DBCreator
-
set the credentials for an administrative DB account used here
to create all needed resources.
- setApiName(String) - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- setAsIdReference(boolean) - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- setAttribute(String) - Method in class net.as_development.asdk.db_service.impl.QueryPart
-
- setAttributes(AttributeListMetaInfo) - Method in class net.as_development.asdk.db_service.impl.EntityMetaInfo
-
- setAttributeValue(String, Object) - Method in class net.as_development.asdk.db_service.impl.PersistentEntity
-
- setAttributeValueOnEntity(Object, AttributeMetaInfo, Object) - Static method in class net.as_development.asdk.db_service.impl.EntityHelper
-
- setClassField(Field) - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- setClassName(String) - Method in class net.as_development.asdk.db_service.impl.EntityMetaInfo
-
- setColumn(String) - Method in class net.as_development.asdk.db_service.impl.QueryPart
-
- setColumnName(String) - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- setColumnValue(String, Object) - Method in class net.as_development.asdk.db_service.impl.Row
-
- setEntities(List<String>) - Method in class net.as_development.asdk.db_service.impl.backend.creator.DBCreator
-
same as setEntities(java.lang.String...)
- setEntities(String...) - Method in class net.as_development.asdk.db_service.impl.backend.creator.DBCreator
-
define the list of entities.
- setEntities(IPersistenceUnit...) - Method in class net.as_development.asdk.db_service.impl.server.DBBackup
-
- setEntity(EntityBase) - Method in class net.as_development.asdk.db_service.impl.PersistentEntity
-
- setEntity(EntityBase) - Method in class net.as_development.asdk.db_service.impl.PersistentStateHandler
-
- setEntityClass(Class<? extends EntityBase>) - Method in class net.as_development.asdk.db_service.impl.backend.creator.CSVDump
-
set the entity class used for import/export here.
- setEntityMetaInfo(EntityMetaInfo) - Method in class net.as_development.asdk.db_service.impl.PersistentEntity
-
- setEntityMetaInfo(EntityMetaInfo) - Method in class net.as_development.asdk.db_service.impl.Row
-
- setEntityMetaInfoProvider(EntityMetaInfoProvider) - Method in interface net.as_development.asdk.db_service.IDBBackend
-
Set the meta information provider to this implementation.
- setEntityMetaInfoProvider(EntityMetaInfoProvider) - Method in class net.as_development.asdk.db_service.impl.backend.cache.CacheProvider
-
- setEntityMetaInfoProvider(EntityMetaInfoProvider) - Method in class net.as_development.asdk.db_service.impl.backend.mongodb.MongoDbProvider
-
- setEntityMetaInfoProvider(EntityMetaInfoProvider) - Method in class net.as_development.asdk.db_service.impl.simpledb.SimpleDbProvider
-
- setEntityMetaInfoProvider(EntityMetaInfoProvider) - Method in class net.as_development.asdk.db_service.impl.sql.SqlProvider
-
- setExpireInMinutes(long) - Method in interface net.as_development.asdk.api.db.IEntity
-
enable the expire feature for this entity and set the expire time in minutes from now.
- setExpireInMinutes(long) - Method in class net.as_development.asdk.db_service.EntityBase
-
enable the expire feature for this entity and set the expire time in minutes from now.
- setExpireInSeconds(long) - Method in interface net.as_development.asdk.api.db.IEntity
-
enable the expire feature for this entity and set the expire time in seconds from now.
- setExpireInSeconds(long) - Method in class net.as_development.asdk.db_service.EntityBase
-
enable the expire feature for this entity and set the expire time in seconds from now.
- setFinal() - Method in class net.as_development.asdk.db_service.impl.QueryPart
-
- setIdAttribute(String) - Method in class net.as_development.asdk.db_service.impl.EntityMetaInfo
-
- setIdGenerationStrategy(PersistentId.EStrategy) - Method in class net.as_development.asdk.db_service.impl.EntityMetaInfo
-
- setIdValue(Object) - Method in class net.as_development.asdk.db_service.impl.Row
-
- setLastBackupDate(Date) - Method in class net.as_development.asdk.db_service.impl.server.DBBackup
-
- setLength(int) - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- setLogicBinding(EQueryPartBinding) - Method in class net.as_development.asdk.db_service.impl.QueryPart
-
- setMappFile(String) - Method in class net.as_development.asdk.db_service.impl.PersistenceUnit
-
- setModifyStamp() - Method in class net.as_development.asdk.db_service.EntityBase
-
has to be called by the DB layer in case this entity is created new or updated
within the DB back end.
- setName(String) - Method in class net.as_development.asdk.db_service.impl.EntityMetaInfo
-
- setName(String) - Method in class net.as_development.asdk.db_service.impl.PersistenceUnit
-
set name for these persistence unit.
- setNextToken(String) - Method in class net.as_development.asdk.db_service.impl.backend.cache.CachedQueryResult
-
- setNullAllowed(boolean) - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- setOffset(int) - Method in class net.as_development.asdk.db_service.impl.NextToken
-
set the new offset for the next token to be generated by using this
instance.
- setOperation(EQueryPartOperation) - Method in class net.as_development.asdk.db_service.impl.QueryPart
-
- setOptionRequired(String, boolean) - Method in class net.as_development.asdk.db_service.impl.backend.creator.CommandLineBase
-
define an option as required (mandatory) one.
- setPageSize(int) - Method in class net.as_development.asdk.db_service.impl.NextToken
-
set the new page size for the next token to be generated by using this
instance.
- setPart(QueryPart) - Method in class net.as_development.asdk.db_service.impl.QueryPartValue
-
- setPassword(String) - Method in class net.as_development.asdk.db_service.impl.PersistenceUnit
-
- setPersistenceUnit(String) - Method in interface net.as_development.asdk.api.db.IDB
-
bind these DB instance to a persistence unit configuration.
- setPersistenceUnit(IPersistenceUnit) - Method in interface net.as_development.asdk.api.db.IDB
-
same as setPersistenceUnit(java.lang.String) ...
- setPersistenceUnit(String) - Method in class net.as_development.asdk.db_service.impl.DB
-
- setPersistenceUnit(IPersistenceUnit) - Method in class net.as_development.asdk.db_service.impl.DB
-
- setPersistenceUnit(PersistenceUnit) - Method in class net.as_development.asdk.db_service.impl.EntityMetaInfoProvider
-
- setPersistenceUnitName(String) - Method in class net.as_development.asdk.db_service.impl.backend.creator.CSVDump
-
set the corresponding persistence unit where the also given
entity class is used.
- setPersistenceUnits(List<String>) - Method in class net.as_development.asdk.db_service.impl.backend.creator.DBCreator
-
same as setPersistenceUnits(java.lang.String...)
- setPersistenceUnits(String...) - Method in class net.as_development.asdk.db_service.impl.backend.creator.DBCreator
-
define the list of persistence unit names.
- setPersistent(boolean) - Method in class net.as_development.asdk.db_service.EntityBase
-
mark the entity as persistent (or not persistent any longer) within the DB back end.
- setPersistent() - Method in class net.as_development.asdk.db_service.impl.PersistentStateHandler
-
- setPersistentStateHandler(PersistentStateHandler) - Method in class net.as_development.asdk.db_service.impl.Row
-
- setProperty(String, String) - Method in class net.as_development.asdk.db_service.impl.PersistenceUnit
-
set new property for these unit.
- setProvider(String) - Method in class net.as_development.asdk.db_service.impl.PersistenceUnit
-
set class name of provider implementation.
- setQueryPart(int, EQueryPartBinding, EQueryPartOperation, String, Object) - Method in interface net.as_development.asdk.api.db.IDBQuery
-
define one part of the query ...
- setQueryPart(int, EQueryPartBinding, EQueryPartOperation, String, Object) - Method in class net.as_development.asdk.db_service.impl.DBQuery
-
- setQueryPart(int, EQueryPartBinding, EQueryPartOperation, String) - Method in class net.as_development.asdk.db_service.impl.DBQueryTemplate
-
see IDBQuery.setQueryPart ()
... but it define those part without any value.
- setRemoved(boolean) - Method in class net.as_development.asdk.db_service.EntityBase
-
- setSchema(String) - Method in class net.as_development.asdk.db_service.impl.EntityMetaInfo
-
- setScramble(boolean) - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- setServerConnection(IPersistenceUnit) - Method in interface net.as_development.asdk.api.db.IDBServer
-
- setServerConnection(IPersistenceUnit) - Method in class net.as_development.asdk.db_service.impl.server.DBServer
-
- setSourceConnection(IPersistenceUnit) - Method in class net.as_development.asdk.db_service.impl.server.DBBackup
-
- setTable(String) - Method in class net.as_development.asdk.db_service.impl.EntityMetaInfo
-
- setTargetConnection(IPersistenceUnit) - Method in class net.as_development.asdk.db_service.impl.server.DBBackup
-
- setTransient() - Method in class net.as_development.asdk.db_service.impl.PersistentStateHandler
-
- setUser(String) - Method in class net.as_development.asdk.db_service.impl.PersistenceUnit
-
- setValue(Object) - Method in class net.as_development.asdk.db_service.impl.QueryPartValue
-
- setValueOnPreparedStatement(PreparedStatement, int, Class<?>, Object) - Method in class net.as_development.asdk.db_service.impl.sql.generator.AnsiSqlGenerator
-
- setValueOnPreparedStatement(PreparedStatement, int, Class<?>, Object) - Method in interface net.as_development.asdk.db_service.ISqlGenerator
-
set the given value on the also given PreparedStatement.
- SIGNUM_NEGATIVE - Static variable in class net.as_development.asdk.db_service.impl.simpledb.NumberStringUtils
-
- SIGNUM_POSITIVE - Static variable in class net.as_development.asdk.db_service.impl.simpledb.NumberStringUtils
-
- SIMPLEDB_ACCESSKEY - Static variable in class net.as_development.asdk.db_service.impl.PersistenceUnitConst
-
- SIMPLEDB_REGION - Static variable in class net.as_development.asdk.db_service.impl.PersistenceUnitConst
-
- SIMPLEDB_SECRETKEY - Static variable in class net.as_development.asdk.db_service.impl.PersistenceUnitConst
-
- SimpleDbProvider - Class in net.as_development.asdk.db_service.impl.simpledb
-
TODO document me
- SimpleDbProvider() - Constructor for class net.as_development.asdk.db_service.impl.simpledb.SimpleDbProvider
-
create new instance.
- SqlProvider - Class in net.as_development.asdk.db_service.impl.sql
-
- SqlProvider() - Constructor for class net.as_development.asdk.db_service.impl.sql.SqlProvider
-
create new instance.
- SqlStatementCache - Class in net.as_development.asdk.db_service.impl.sql
-
Implements a (hash based) cache of PreparedStatement objects.
- SqlStatementCache() - Constructor for class net.as_development.asdk.db_service.impl.sql.SqlStatementCache
-
create new instance.
- SQLTYPE_BOOLEAN - Static variable in class net.as_development.asdk.db_service.impl.sql.generator.AnsiSqlGenerator
-
- SQLTYPE_BYTE - Static variable in class net.as_development.asdk.db_service.impl.sql.generator.AnsiSqlGenerator
-
- SQLTYPE_CHAR - Static variable in class net.as_development.asdk.db_service.impl.sql.generator.AnsiSqlGenerator
-
- SQLTYPE_DATE - Static variable in class net.as_development.asdk.db_service.impl.sql.generator.AnsiSqlGenerator
-
- SQLTYPE_DOUBLE - Static variable in class net.as_development.asdk.db_service.impl.sql.generator.AnsiSqlGenerator
-
- SQLTYPE_FLOAT - Static variable in class net.as_development.asdk.db_service.impl.sql.generator.AnsiSqlGenerator
-
- SQLTYPE_INT - Static variable in class net.as_development.asdk.db_service.impl.sql.generator.AnsiSqlGenerator
-
- SQLTYPE_LONG - Static variable in class net.as_development.asdk.db_service.impl.sql.generator.AnsiSqlGenerator
-
- SQLTYPE_SHORT - Static variable in class net.as_development.asdk.db_service.impl.sql.generator.AnsiSqlGenerator
-
- stepNext(int) - Method in class net.as_development.asdk.db_service.impl.NextToken
-
- stepNext() - Method in class net.as_development.asdk.db_service.impl.NextToken
-
- storeEntities(TEntity...) - Method in interface net.as_development.asdk.api.db.IDB
-
make all given entities persistent inside DB.
- storeEntities(TEntity...) - Method in class net.as_development.asdk.db_service.impl.DB
-
- Value - Variable in class net.as_development.asdk.db_service.impl.Column
-
- VALUE_QUOTE - Static variable in class net.as_development.asdk.db_service.impl.simpledb.SdbStatementGenerator
-
- valueOf(String) - Static method in enum net.as_development.asdk.api.db.EQueryPartBinding
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.as_development.asdk.api.db.EQueryPartOperation
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.as_development.asdk.api.db.PersistentId.EStrategy
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.as_development.asdk.db_service.impl.backend.creator.DBCreator.EOperation
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.as_development.asdk.db_service.impl.simpledb.AwsEndPointDefinitions.ERegion
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.as_development.asdk.db_service.impl.simpledb.AwsEndPointDefinitions.EService
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.as_development.asdk.db_service.ISqlGenerator.ESqlError
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum net.as_development.asdk.db_service.ISqlGenerator.EStatementType
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum net.as_development.asdk.api.db.EQueryPartBinding
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.as_development.asdk.api.db.EQueryPartOperation
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.as_development.asdk.api.db.PersistentId.EStrategy
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.as_development.asdk.db_service.impl.backend.creator.DBCreator.EOperation
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.as_development.asdk.db_service.impl.simpledb.AwsEndPointDefinitions.ERegion
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.as_development.asdk.db_service.impl.simpledb.AwsEndPointDefinitions.EService
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.as_development.asdk.db_service.ISqlGenerator.ESqlError
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum net.as_development.asdk.db_service.ISqlGenerator.EStatementType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- verify() - Method in class net.as_development.asdk.db_service.impl.AttributeMetaInfo
-
- verify() - Method in class net.as_development.asdk.db_service.impl.backend.creator.CommandLineBase
-
must be overwritten by a derived class to verify the command line more in detail.
- verify() - Method in class net.as_development.asdk.db_service.impl.backend.creator.DBCreatorCommandLine
-
- verify() - Method in class net.as_development.asdk.db_service.impl.EntityMetaInfo
-