Skip navigation links
A B C D E F G H I J K L M N O P R S T U V _ 

A

acceptEntity(Class<?>) - Method in interface info.archinnov.achilles.type.interceptor.Interceptor
 
ACHILLES_DDL_SCRIPT - Static variable in interface info.archinnov.achilles.logger.AchillesLoggers
 
ACHILLES_DML_STATEMENT - Static variable in interface info.archinnov.achilles.logger.AchillesLoggers
 
AchillesBeanMappingException - Exception in info.archinnov.achilles.exception
 
AchillesBeanMappingException() - Constructor for exception info.archinnov.achilles.exception.AchillesBeanMappingException
 
AchillesBeanMappingException(String) - Constructor for exception info.archinnov.achilles.exception.AchillesBeanMappingException
 
AchillesBeanMappingException(String, Throwable) - Constructor for exception info.archinnov.achilles.exception.AchillesBeanMappingException
 
AchillesBeanValidationException - Exception in info.archinnov.achilles.exception
 
AchillesBeanValidationException(Throwable) - Constructor for exception info.archinnov.achilles.exception.AchillesBeanValidationException
 
AchillesBeanValidationException() - Constructor for exception info.archinnov.achilles.exception.AchillesBeanValidationException
 
AchillesBeanValidationException(String) - Constructor for exception info.archinnov.achilles.exception.AchillesBeanValidationException
 
AchillesBeanValidationException(String, Throwable) - Constructor for exception info.archinnov.achilles.exception.AchillesBeanValidationException
 
AchillesException - Exception in info.archinnov.achilles.exception
 
AchillesException(Throwable) - Constructor for exception info.archinnov.achilles.exception.AchillesException
 
AchillesException() - Constructor for exception info.archinnov.achilles.exception.AchillesException
 
AchillesException(String) - Constructor for exception info.archinnov.achilles.exception.AchillesException
 
AchillesException(String, Throwable) - Constructor for exception info.archinnov.achilles.exception.AchillesException
 
AchillesInvalidTableException - Exception in info.archinnov.achilles.exception
 
AchillesInvalidTableException(String) - Constructor for exception info.archinnov.achilles.exception.AchillesInvalidTableException
 
AchillesLightWeightTransactionException - Exception in info.archinnov.achilles.exception
 
AchillesLightWeightTransactionException(LWTResultListener.LWTResult) - Constructor for exception info.archinnov.achilles.exception.AchillesLightWeightTransactionException
 
AchillesLoggers - Interface in info.archinnov.achilles.logger
Define Achilles logger names for DML statements and DDL scripts
AchillesStaleObjectStateException - Exception in info.archinnov.achilles.exception
 
AchillesStaleObjectStateException(String) - Constructor for exception info.archinnov.achilles.exception.AchillesStaleObjectStateException
 
AchillesTranscodingException - Exception in info.archinnov.achilles.exception
 
AchillesTranscodingException(Throwable) - Constructor for exception info.archinnov.achilles.exception.AchillesTranscodingException
 
AchillesTranscodingException() - Constructor for exception info.archinnov.achilles.exception.AchillesTranscodingException
 
AchillesTranscodingException(String) - Constructor for exception info.archinnov.achilles.exception.AchillesTranscodingException
 
AchillesTranscodingException(String, Throwable) - Constructor for exception info.archinnov.achilles.exception.AchillesTranscodingException
 
analyzerClass() - Method in enum info.archinnov.achilles.annotations.SASI.Analyzer
 
ASCII - Annotation Type in info.archinnov.achilles.annotations
Map this Java String type to Cassandra ascii type.

B

BeanFactory - Interface in info.archinnov.achilles.type.factory
Interface to create new instance of entities and UDT classes

C

CassandraVersion - Enum in info.archinnov.achilles.type
Define which version of Cassandra you want Achilles to generate source code against

Below are the list of supported features for each Cassandra version:

Cassandra version Supported features Related JIRA(s) 2.1.X All existing features N/A 2.2.X JSON Syntax User Defined Functions User Defined Aggregates CASSANDRA-7970 CASSANDRA-7395, CASSANDRA-7526, CASSANDRA-7562, CASSANDRA-7740, CASSANDRA-7781, CASSANDRA-7929, CASSANDRA-7924, CASSANDRA-7812, CASSANDRA-8063, CASSANDRA-7813, CASSANDRA-7708 CASSANDRA-8053 3.0.X Materialized Views Support for IN restrictions on any partition key component or clustering key as well as support for EQ and IN multicolumn restrictions has been added to UPDATE and DELETE statement Support for single-column and multi-column slice restrictions (>, >=, <= and <) has been added to DELETE statements CASSANDRA-6477 3.1 Nothing N/A 3.2 Add support for type casting in selection clause CASSANDRA-10310 3.6 Allow per-partition LIMIT clause in CQL Support for non-frozen user-defined types, updating individual fields of user-defined types CASSANDRA-7017 CASSANDRA-7423 3.7 Full support for stable SASI index CASSANDRA-10661 CASSANDRA-11130 CASSANDRA-11136 CASSANDRA-11159 CASSANDRA-11169 CASSANDRA-11183 CASSANDRA-11434 DSE 4.8.X Full support for DSE Search N/A DSE 5.0.X Full support for DSE Search N/A And below is the impact of each new feature on **Achilles**-generated code:
Cassandra Feature Achilles generated code JSON Syntax manager.crud().insertJson(String json) manager.dsl().....where().xxx().Eq_FromJSON() manager.dsl().select().allColumnsAsJSON_FromBaseTable().....where()......getJSON() manager.dsl().update().....xxx().Set_FromJSON() manager.dsl().update().....if_xxx().Eq_FromJSON() manager.dsl().delete().....if_xxx().Eq_FromJSON() User Defined Function/User Defined Aggregates @FunctionRegistry is allowed info.archinnov.achilles.generated.function.FunctionsRegistry generated class Materialized Views @MaterializedView is allowed Support for IN restrictions on clustering columns for UPDATE/DELETE manager.dsl().update()...where()....xxx().IN(...) manager.dsl().delete()...where()....xxx().IN(...) Support for multi-column slice restrictions (>, >=, <= and <) for DELETE manager.dsl().delete()...where()....xxx().Gt(...) manager.dsl().delete()...where()....xxx().Gt_And_Lt(...) Support for type casting in selection clause manager.dsl().select().function(SystemFunctions.castAsxxx()...) Support for PER PARTITION LIMIT manager.dsl().select()....perPartitionLimit(xxx) Support for non-frozen user-defined types, updating individual fields of user-defined types
Remark: collections inside non-frozen UDT MUST be set as frozen manager.dsl().update().fromBaseTable().userUDT().firstname.Set(...) manager.dsl().update().fromBaseTable().userUDT().lastname.Set(...) Support for SASI index/DSE Search (on text/ascii columns): SASI:
manager.indexed().select()..where().firstname().StartWith(String prefix) manager.indexed().select()..where().firstname().EndWith(String suffix) manager.indexed().select()..where().firstname().Contain(String substring) DSE Search:
manager.indexed().select()..where().firstname().StartWith(String prefix) manager.indexed().select()..where().firstname().EndWith(String suffix) manager.indexed().select()..where().firstname().Contain(String substring) manager.indexed().select()..where().firstname().rawPredicate(String rawSolrPredicate) manager.indexed().select()..where().rawSolrQuery(String rawSolrQueryString)
ClusteringColumn - Annotation Type in info.archinnov.achilles.annotations
Indicates that this component is a clustering column key.
Codec - Annotation Type in info.archinnov.achilles.annotations
Transform a custom Java type into one of native types supported by the Java driver
The Codec class provided should implement the Codec interface.
Codec<FROM,TO> - Interface in info.archinnov.achilles.type.codec
Define a codec to transform a source type into a target type.
CodecRegistry - Annotation Type in info.archinnov.achilles.annotations
Marker annotation to be used on configuration class for compile-time code generation.
CodecSignature<FROM,TO> - Class in info.archinnov.achilles.type.codec
Class to define a signature for a @RuntimeCodec Usage:

 //Compile time
 @Column
 @RuntimeCodec(cqlClass = String.class)
 private MyBean bean;

 //Runtime
 final Cluster cluster = ....
CodecSignature(Class<FROM>, Class<TO>) - Constructor for class info.archinnov.achilles.type.codec.CodecSignature
 
CodecSignature(Class<FROM>, Class<TO>, Optional<String>) - Constructor for class info.archinnov.achilles.type.codec.CodecSignature
 
CodecSignature(Class<FROM>, Class<TO>, String) - Constructor for class info.archinnov.achilles.type.codec.CodecSignature
 
Column - Annotation Type in info.archinnov.achilles.annotations
Annotation for simple column.
ColumnMappingStrategy - Enum in info.archinnov.achilles.type.strategy
 
CompileTimeConfig - Annotation Type in info.archinnov.achilles.annotations
Define options for source code generation at compile time.
Computed - Annotation Type in info.archinnov.achilles.annotations
Annotation for computed column.
Consistency - Annotation Type in info.archinnov.achilles.annotations
Define the default consistency level for an Entity for all operations


 @Table(table = "user")
 @Consistency(read = ConsistencyLevel.ONE, write = ConsistencyLevel.ALL, serial = ConsistencyLevel.LOCAL_SERIAL)
 public class User {...}

 
Counter - Annotation Type in info.archinnov.achilles.annotations
Indicate that a column is a CQL counter.
currentValues() - Method in exception info.archinnov.achilles.exception.AchillesLightWeightTransactionException
 
currentValues() - Method in class info.archinnov.achilles.type.lightweighttransaction.LWTResultListener.LWTResult
 

D

decode(TO) - Method in interface info.archinnov.achilles.type.codec.Codec
 
DSE_Search - Annotation Type in info.archinnov.achilles.annotations
Annotation for DSE Search.

E

Empty - Enum in info.archinnov.achilles.type
Placeholder singleton for future operations.
EmptyCollectionIfNull - Annotation Type in info.archinnov.achilles.annotations
In Cassandra there is no difference between an empty collection/map and a null value for collection/map

In Java we do make the difference.
encode(FROM) - Method in interface info.archinnov.achilles.type.codec.Codec
 
EntityCreator - Annotation Type in info.archinnov.achilles.annotations
Define the custom constructor to be use to instantiate the entity.
Enumerated - Annotation Type in info.archinnov.achilles.annotations
Annotation for enum type column.
Enumerated.Encoding - Enum in info.archinnov.achilles.annotations
 
equals(Object) - Method in class info.archinnov.achilles.type.codec.CodecSignature
 
equals(Object) - Method in class info.archinnov.achilles.type.tuples.Tuple1
 
equals(Object) - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
equals(Object) - Method in class info.archinnov.achilles.type.tuples.Tuple2
 
equals(Object) - Method in class info.archinnov.achilles.type.tuples.Tuple3
 
equals(Object) - Method in class info.archinnov.achilles.type.tuples.Tuple4
 
equals(Object) - Method in class info.archinnov.achilles.type.tuples.Tuple5
 
equals(Object) - Method in class info.archinnov.achilles.type.tuples.Tuple6
 
equals(Object) - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
equals(Object) - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
equals(Object) - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
Event - Enum in info.archinnov.achilles.type.interceptor
Events representing entity lifecycle.

F

forNonTokenizingAnalyzer() - Method in enum info.archinnov.achilles.annotations.SASI.Normalization
 
forStandardAnalyzer() - Method in enum info.archinnov.achilles.annotations.SASI.Normalization
 
fromMap(Map<String, Object>) - Static method in class info.archinnov.achilles.type.TypedMap
 
Frozen - Annotation Type in info.archinnov.achilles.annotations
Annotation to indicate that a type is frozen.
FunctionRegistry - Annotation Type in info.archinnov.achilles.annotations
Marks a class as a function registry and let Achilles manage it

 @FunctionRegistry
 public interface MyFunctions {

      Integer sumOf(int val1, int val2);

      Long toLong(Date javaDate);
 }
 

G

getTyped(String) - Method in class info.archinnov.achilles.type.TypedMap
 
getTypedOr(String, T) - Method in class info.archinnov.achilles.type.TypedMap
 

H

hashCode() - Method in class info.archinnov.achilles.type.codec.CodecSignature
 
hashCode() - Method in class info.archinnov.achilles.type.tuples.Tuple1
 
hashCode() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
hashCode() - Method in class info.archinnov.achilles.type.tuples.Tuple2
 
hashCode() - Method in class info.archinnov.achilles.type.tuples.Tuple3
 
hashCode() - Method in class info.archinnov.achilles.type.tuples.Tuple4
 
hashCode() - Method in class info.archinnov.achilles.type.tuples.Tuple5
 
hashCode() - Method in class info.archinnov.achilles.type.tuples.Tuple6
 
hashCode() - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
hashCode() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
hashCode() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 

I

Immutable - Annotation Type in info.archinnov.achilles.annotations
Mark an entity/udt/view as immutable.
Index - Annotation Type in info.archinnov.achilles.annotations
Annotation for secondary index.
info.archinnov.achilles.annotations - package info.archinnov.achilles.annotations
 
info.archinnov.achilles.exception - package info.archinnov.achilles.exception
 
info.archinnov.achilles.logger - package info.archinnov.achilles.logger
 
info.archinnov.achilles.type - package info.archinnov.achilles.type
 
info.archinnov.achilles.type.codec - package info.archinnov.achilles.type.codec
 
info.archinnov.achilles.type.factory - package info.archinnov.achilles.type.factory
 
info.archinnov.achilles.type.interceptor - package info.archinnov.achilles.type.interceptor
 
info.archinnov.achilles.type.lightweighttransaction - package info.archinnov.achilles.type.lightweighttransaction
 
info.archinnov.achilles.type.strategy - package info.archinnov.achilles.type.strategy
 
info.archinnov.achilles.type.tuples - package info.archinnov.achilles.type.tuples
 
info.archinnov.achilles.validation - package info.archinnov.achilles.validation
 
InsertStrategy - Enum in info.archinnov.achilles.type.strategy
Define a strategy for insertion.
interceptOnEvents() - Method in interface info.archinnov.achilles.type.interceptor.Interceptor
 
Interceptor<T> - Interface in info.archinnov.achilles.type.interceptor
Interface to define an entity interceptor.

J

JSON - Annotation Type in info.archinnov.achilles.annotations
Annotation to makes Achilles serialize the object into JSON String.

K

keyspaceFor(Class<T>) - Method in interface info.archinnov.achilles.type.SchemaNameProvider
Provide keyspace name for entity class

L

LWTResult(LWTResultListener.LWTResult.LWTOperation, TypedMap) - Constructor for class info.archinnov.achilles.type.lightweighttransaction.LWTResultListener.LWTResult
 
LWTResultListener - Interface in info.archinnov.achilles.type.lightweighttransaction
Interface to define listener for LWT operations.
LWTResultListener.LWTResult - Class in info.archinnov.achilles.type.lightweighttransaction
POJO class keeping information on a LWT operation.
LWTResultListener.LWTResult.LWTOperation - Enum in info.archinnov.achilles.type.lightweighttransaction
 

M

MaterializedView - Annotation Type in info.archinnov.achilles.annotations
Marks a class as a materialized view and let Achilles manage it

 @MaterializedView(baseEntity = UserEntity.class)
 public class UserByCountryView {...}
 

N

NamingStrategy - Enum in info.archinnov.achilles.type.strategy
Define naming strategy for keyspace name, table name and column names.Available values are: info.archinnov.achilles.type.NamingStrategy.SNAKE_CASE: transform the name using snake case info.archinnov.achilles.type.NamingStrategy.CASE_SENSITIVE: enclose the name between double quotes (") for escaping the case info.archinnov.achilles.type.NamingStrategy.LOWER_CASE: transform the name to lower case
newInstance(Class<T>) - Method in interface info.archinnov.achilles.type.factory.BeanFactory
 

O

of(A) - Static method in class info.archinnov.achilles.type.tuples.Tuple1
 
of(A, B, C, D, E, F, G, H, I, J) - Static method in class info.archinnov.achilles.type.tuples.Tuple10
 
of(A, B) - Static method in class info.archinnov.achilles.type.tuples.Tuple2
 
of(A, B, C) - Static method in class info.archinnov.achilles.type.tuples.Tuple3
 
of(A, B, C, D) - Static method in class info.archinnov.achilles.type.tuples.Tuple4
 
of(A, B, C, D, E) - Static method in class info.archinnov.achilles.type.tuples.Tuple5
 
of(A, B, C, D, E, F) - Static method in class info.archinnov.achilles.type.tuples.Tuple6
 
of(A, B, C, D, E, F, G) - Static method in class info.archinnov.achilles.type.tuples.Tuple7
 
of(A, B, C, D, E, F, G, H) - Static method in class info.archinnov.achilles.type.tuples.Tuple8
 
of(A, B, C, D, E, F, G, H, I) - Static method in class info.archinnov.achilles.type.tuples.Tuple9
 
of(String, Object) - Static method in class info.archinnov.achilles.type.TypedMap
 
onError(LWTResultListener.LWTResult) - Method in interface info.archinnov.achilles.type.lightweighttransaction.LWTResultListener
 
onEvent(T, Event) - Method in interface info.archinnov.achilles.type.interceptor.Interceptor
 
onSuccess() - Method in interface info.archinnov.achilles.type.lightweighttransaction.LWTResultListener
 
operation() - Method in exception info.archinnov.achilles.exception.AchillesLightWeightTransactionException
 
operation() - Method in class info.archinnov.achilles.type.lightweighttransaction.LWTResultListener.LWTResult
 

P

PartitionKey - Annotation Type in info.archinnov.achilles.annotations
Indicates that this component is part of the partition key.Useful to define a composite partition key.

R

RuntimeCodec - Annotation Type in info.archinnov.achilles.annotations
Transform a custom Java type into one of native types supported by the Java driver.

S

SASI - Annotation Type in info.archinnov.achilles.annotations
Annotation for SASI index

The following combinations are allowed for index options:
Data type Index Mode Analyzer Class Possible option values Text or Ascii PREFIX or CONTAINS NoOpAnalyzer analyzed = false (DEFAULT) normalization = NONE (DEFAULT) locale is ignored maxCompactionFlushMemoryInMb (OPTIONAL) enableStemming = false (DEFAULT) skipStopWords = false (DEFAULT) Text or Ascii PREFIX or CONTAINS NonTokenizingAnalyzer analyzed = true (MANDATORY) normalization (OPTIONAL) locale (OPTIONAL) maxCompactionFlushMemoryInMb (OPTIONAL) enableStemming = false (DEFAULT) skipStopWords = false (DEFAULT) Text or Ascii PREFIX or CONTAINS StandardAnalyzer analyzed = true (MANDATORY) normalization (OPTIONAL) locale (OPTIONAL) maxCompactionFlushMemoryInMb (OPTIONAL) enableStemming = false (DEFAULT) skipStopWords = false (DEFAULT) Non Text PREFIX OR SPARSE NoOpAnalyzer analyzed = false (DEFAULT) normalization = NONE (DEFAULT) locale is ignored maxCompactionFlushMemoryInMb (OPTIONAL) enableStemming = false (DEFAULT) skipStopWords = false (DEFAULT)
SASI.Analyzer - Enum in info.archinnov.achilles.annotations
 
SASI.IndexMode - Enum in info.archinnov.achilles.annotations
 
SASI.Normalization - Enum in info.archinnov.achilles.annotations
 
SchemaNameProvider - Interface in info.archinnov.achilles.type
Interface to implement if you want to provide your own schema name provider.
SOLR_DATE_FORMAT - Static variable in annotation type info.archinnov.achilles.annotations.DSE_Search
 
sourceType() - Method in interface info.archinnov.achilles.type.codec.Codec
 
Static - Annotation Type in info.archinnov.achilles.annotations
Define a static column


 @Table
 public class Entity {

 // Partition key
 @PartitionKey
 private Long id;

 // Clustering column
 @ClusteringColumn
 private int date;

 // Static column
 @Column
 @Static
 private String staticCol;
 }
 
Strategy - Annotation Type in info.archinnov.achilles.annotations
Choose a strategy for insertion and schema naming.
For insertion strategy, available values are : info.archinnov.achilles.type.InsertStrategy.ALL_FIELDS info.archinnov.achilles.type.InsertStrategy.NOT_NULL_FIELDS
Default value = info.archinnov.achilles.type.InsertStrategy.ALL_FIELDS


 @Table(table = "users")
 @Strategy(insert = InsertStrategy.NOT_NULL_FIELDS)
 public class UserEntity;

 

T

Table - Annotation Type in info.archinnov.achilles.annotations
Marks a class as an entity and let Achilles manage it

 @Table
 public class UserEntity {...}
 
tableNameFor(Class<T>) - Method in interface info.archinnov.achilles.type.SchemaNameProvider
Provide table name for entity class
targetType() - Method in interface info.archinnov.achilles.type.codec.Codec
 
TimeUUID - Annotation Type in info.archinnov.achilles.annotations
Map this Java UUID type to Cassandra timeuuid type.
toString() - Method in exception info.archinnov.achilles.exception.AchillesLightWeightTransactionException
 
toString() - Method in class info.archinnov.achilles.type.codec.CodecSignature
 
toString() - Method in class info.archinnov.achilles.type.lightweighttransaction.LWTResultListener.LWTResult
 
toString() - Method in class info.archinnov.achilles.type.tuples.Tuple1
 
toString() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
toString() - Method in class info.archinnov.achilles.type.tuples.Tuple2
 
toString() - Method in class info.archinnov.achilles.type.tuples.Tuple3
 
toString() - Method in class info.archinnov.achilles.type.tuples.Tuple4
 
toString() - Method in class info.archinnov.achilles.type.tuples.Tuple5
 
toString() - Method in class info.archinnov.achilles.type.tuples.Tuple6
 
toString() - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
toString() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
toString() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
Transient - Annotation Type in info.archinnov.achilles.annotations
Annotation to tell Achilles to ignore this column in the mapping


 // Transient colum,
 @Transient
 private String transient;

 
TTL - Annotation Type in info.archinnov.achilles.annotations
Define the default time to live, in second(s) for an Entity.
Tuple - Interface in info.archinnov.achilles.type.tuples
Common interface of all tuples
Tuple1<A> - Class in info.archinnov.achilles.type.tuples
Tuple1
Tuple1(A) - Constructor for class info.archinnov.achilles.type.tuples.Tuple1
 
Tuple10<A,B,C,D,E,F,G,H,I,J> - Class in info.archinnov.achilles.type.tuples
Tuple10
Tuple10(A, B, C, D, E, F, G, H, I, J) - Constructor for class info.archinnov.achilles.type.tuples.Tuple10
 
Tuple2<A,B> - Class in info.archinnov.achilles.type.tuples
Tuple2
Tuple2(A, B) - Constructor for class info.archinnov.achilles.type.tuples.Tuple2
 
Tuple3<A,B,C> - Class in info.archinnov.achilles.type.tuples
Tuple3
Tuple3(A, B, C) - Constructor for class info.archinnov.achilles.type.tuples.Tuple3
 
Tuple4<A,B,C,D> - Class in info.archinnov.achilles.type.tuples
Tuple4
Tuple4(A, B, C, D) - Constructor for class info.archinnov.achilles.type.tuples.Tuple4
 
Tuple5<A,B,C,D,E> - Class in info.archinnov.achilles.type.tuples
Tuple5
Tuple5(A, B, C, D, E) - Constructor for class info.archinnov.achilles.type.tuples.Tuple5
 
Tuple6<A,B,C,D,E,F> - Class in info.archinnov.achilles.type.tuples
Tuple6
Tuple6(A, B, C, D, E, F) - Constructor for class info.archinnov.achilles.type.tuples.Tuple6
 
Tuple7<A,B,C,D,E,F,G> - Class in info.archinnov.achilles.type.tuples
Tuple7
Tuple7(A, B, C, D, E, F, G) - Constructor for class info.archinnov.achilles.type.tuples.Tuple7
 
Tuple8<A,B,C,D,E,F,G,H> - Class in info.archinnov.achilles.type.tuples
Tuple8
Tuple8(A, B, C, D, E, F, G, H) - Constructor for class info.archinnov.achilles.type.tuples.Tuple8
 
Tuple9<A,B,C,D,E,F,G,H,I> - Class in info.archinnov.achilles.type.tuples
Tuple9
Tuple9(A, B, C, D, E, F, G, H, I) - Constructor for class info.archinnov.achilles.type.tuples.Tuple9
 
TypedMap - Class in info.archinnov.achilles.type
Utility class.
TypedMap() - Constructor for class info.archinnov.achilles.type.TypedMap
 

U

UDT - Annotation Type in info.archinnov.achilles.annotations
Annotation to indicate that a field is an UDT (User Defined Type).

V

validateBeanMappingFalse(boolean, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateBeanMappingNotNull(Object, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateBeanMappingTrue(boolean, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateComparable(Class<?>, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateEmpty(Collection<?>, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateFalse(boolean, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateInstanceOf(Object, Class<T>, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateInstantiable(Class<?>) - Static method in class info.archinnov.achilles.validation.Validator
 
validateNotBlank(String, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateNotEmpty(Object[], String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateNotEmpty(Collection<?>, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateNotEmpty(Map<?, ?>, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateNotNull(Object, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateRegExp(String, String, String) - Static method in class info.archinnov.achilles.validation.Validator
 
validateSize(Map<?, ?>, int, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateTableFalse(boolean, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateTableTrue(boolean, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
validateTrue(boolean, String, Object...) - Static method in class info.archinnov.achilles.validation.Validator
 
Validator - Class in info.archinnov.achilles.validation
 
Validator() - Constructor for class info.archinnov.achilles.validation.Validator
 
valueOf(String) - Static method in enum info.archinnov.achilles.annotations.Enumerated.Encoding
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum info.archinnov.achilles.annotations.SASI.Analyzer
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum info.archinnov.achilles.annotations.SASI.IndexMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum info.archinnov.achilles.annotations.SASI.Normalization
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum info.archinnov.achilles.type.CassandraVersion
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum info.archinnov.achilles.type.Empty
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum info.archinnov.achilles.type.interceptor.Event
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum info.archinnov.achilles.type.lightweighttransaction.LWTResultListener.LWTResult.LWTOperation
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum info.archinnov.achilles.type.strategy.ColumnMappingStrategy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum info.archinnov.achilles.type.strategy.InsertStrategy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum info.archinnov.achilles.type.strategy.NamingStrategy
Returns the enum constant of this type with the specified name.
values() - Static method in enum info.archinnov.achilles.annotations.Enumerated.Encoding
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum info.archinnov.achilles.annotations.SASI.Analyzer
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum info.archinnov.achilles.annotations.SASI.IndexMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum info.archinnov.achilles.annotations.SASI.Normalization
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum info.archinnov.achilles.type.CassandraVersion
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum info.archinnov.achilles.type.Empty
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum info.archinnov.achilles.type.interceptor.Event
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum info.archinnov.achilles.type.lightweighttransaction.LWTResultListener.LWTResult.LWTOperation
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum info.archinnov.achilles.type.strategy.ColumnMappingStrategy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum info.archinnov.achilles.type.strategy.InsertStrategy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum info.archinnov.achilles.type.strategy.NamingStrategy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Method in interface info.archinnov.achilles.type.tuples.Tuple
Return all tuple values as a list
values() - Method in class info.archinnov.achilles.type.tuples.Tuple1
 
values() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
values() - Method in class info.archinnov.achilles.type.tuples.Tuple2
 
values() - Method in class info.archinnov.achilles.type.tuples.Tuple3
 
values() - Method in class info.archinnov.achilles.type.tuples.Tuple4
 
values() - Method in class info.archinnov.achilles.type.tuples.Tuple5
 
values() - Method in class info.archinnov.achilles.type.tuples.Tuple6
 
values() - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
values() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
values() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 

_

_1() - Method in class info.archinnov.achilles.type.tuples.Tuple1
 
_1() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
_1() - Method in class info.archinnov.achilles.type.tuples.Tuple2
 
_1() - Method in class info.archinnov.achilles.type.tuples.Tuple3
 
_1() - Method in class info.archinnov.achilles.type.tuples.Tuple4
 
_1() - Method in class info.archinnov.achilles.type.tuples.Tuple5
 
_1() - Method in class info.archinnov.achilles.type.tuples.Tuple6
 
_1() - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
_1() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
_1() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
_10() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
_2() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
_2() - Method in class info.archinnov.achilles.type.tuples.Tuple2
 
_2() - Method in class info.archinnov.achilles.type.tuples.Tuple3
 
_2() - Method in class info.archinnov.achilles.type.tuples.Tuple4
 
_2() - Method in class info.archinnov.achilles.type.tuples.Tuple5
 
_2() - Method in class info.archinnov.achilles.type.tuples.Tuple6
 
_2() - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
_2() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
_2() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
_3() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
_3() - Method in class info.archinnov.achilles.type.tuples.Tuple3
 
_3() - Method in class info.archinnov.achilles.type.tuples.Tuple4
 
_3() - Method in class info.archinnov.achilles.type.tuples.Tuple5
 
_3() - Method in class info.archinnov.achilles.type.tuples.Tuple6
 
_3() - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
_3() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
_3() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
_4() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
_4() - Method in class info.archinnov.achilles.type.tuples.Tuple4
 
_4() - Method in class info.archinnov.achilles.type.tuples.Tuple5
 
_4() - Method in class info.archinnov.achilles.type.tuples.Tuple6
 
_4() - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
_4() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
_4() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
_5() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
_5() - Method in class info.archinnov.achilles.type.tuples.Tuple5
 
_5() - Method in class info.archinnov.achilles.type.tuples.Tuple6
 
_5() - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
_5() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
_5() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
_6() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
_6() - Method in class info.archinnov.achilles.type.tuples.Tuple6
 
_6() - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
_6() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
_6() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
_7() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
_7() - Method in class info.archinnov.achilles.type.tuples.Tuple7
 
_7() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
_7() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
_8() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
_8() - Method in class info.archinnov.achilles.type.tuples.Tuple8
 
_8() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
_9() - Method in class info.archinnov.achilles.type.tuples.Tuple10
 
_9() - Method in class info.archinnov.achilles.type.tuples.Tuple9
 
A B C D E F G H I J K L M N O P R S T U V _ 

Copyright © 2012-2021. All Rights Reserved.