A C D E F G I M O P Q R S T U V 

A

Accessor - Annotation Type in com.datastax.driver.mapping.annotations
An accessor is an interface that defines a set of method to read and write from Cassandra.
all() - Method in class com.datastax.driver.mapping.Result
Returns all the remaining results (entities) in this mapped result set as a list.

C

ClusteringColumn - Annotation Type in com.datastax.driver.mapping.annotations
Annotation for fields that map to a CQL clustering column.
Column - Annotation Type in com.datastax.driver.mapping.annotations
Annotation that allows to specify the name of the CQL column to which the field should be mapped.
com.datastax.driver.mapping - package com.datastax.driver.mapping
 
com.datastax.driver.mapping.annotations - package com.datastax.driver.mapping.annotations
 
createAccessor(Class<T>) - Method in class com.datastax.driver.mapping.MappingManager
Creates an accessor object based on the provided interface (that must be annotated by a Accessor annotation).

D

delete(T) - Method in class com.datastax.driver.mapping.Mapper
Deletes an entity mapped by this mapper.
delete(Object...) - Method in class com.datastax.driver.mapping.Mapper
Deletes an entity based on its primary key.
deleteAsync(T) - Method in class com.datastax.driver.mapping.Mapper
Deletes an entity mapped by this mapper asynchronously.
deleteAsync(Object...) - Method in class com.datastax.driver.mapping.Mapper
Deletes an entity based on its primary key asynchronously.
deleteQuery(T) - Method in class com.datastax.driver.mapping.Mapper
Creates a query that can be used to delete the provided entity.
deleteQuery(Object...) - Method in class com.datastax.driver.mapping.Mapper
Creates a query that can be used to delete an entity given its PRIMARY KEY.

E

Enumerated - Annotation Type in com.datastax.driver.mapping.annotations
Defines that the annotated field (that must be a Java Enum) must be persisted as an enumerated type.
EnumType - Enum in com.datastax.driver.mapping
The types of way to persist a JAVA Enum.

F

Field - Annotation Type in com.datastax.driver.mapping.annotations
Annotation that allows to specify the name of the CQL UDT field to which the Java field should be mapped.
fromUDT(UDTValue) - Method in class com.datastax.driver.mapping.UDTMapper
Converts a UDTValue (returned by the core API) to the mapped class.
Frozen - Annotation Type in com.datastax.driver.mapping.annotations
Specifies that the field decorated with this annotation maps to a CQL type that is frozen, or contains frozen subtypes.
FrozenKey - Annotation Type in com.datastax.driver.mapping.annotations
Shorthand to specify that the key type of a MAP field is frozen.
FrozenValue - Annotation Type in com.datastax.driver.mapping.annotations
Shorthand to specify that the value type of a collection field is frozen.

G

get(Object...) - Method in class com.datastax.driver.mapping.Mapper
Fetch an entity based on its primary key.
getAsync(Object...) - Method in class com.datastax.driver.mapping.Mapper
Fetch an entity based on its primary key asynchronously.
getExecutionInfo() - Method in class com.datastax.driver.mapping.Result
Returns information on the execution of this query.
getManager() - Method in class com.datastax.driver.mapping.Mapper
The MappingManager managing this mapper.
getQuery(Object...) - Method in class com.datastax.driver.mapping.Mapper
Creates a query to fetch entity given its PRIMARY KEY.
getSession() - Method in class com.datastax.driver.mapping.MappingManager
The underlying Session used by this manager.

I

isExhausted() - Method in class com.datastax.driver.mapping.Result
Test whether this mapped result set has more results.
iterator() - Method in class com.datastax.driver.mapping.Result
An iterator over the entities of this mapped result set.

M

map(ResultSet) - Method in class com.datastax.driver.mapping.Mapper
Map the rows from a ResultSet into the class this is mapper of.
Mapper<T> - Class in com.datastax.driver.mapping
An object handling the mapping of a particular class.
mapper(Class<T>) - Method in class com.datastax.driver.mapping.MappingManager
Creates a Mapper for the provided class (that must be annotated by a Table annotation).
MappingManager - Class in com.datastax.driver.mapping
Mapping manager from which to obtain entity mappers.
MappingManager(Session) - Constructor for class com.datastax.driver.mapping.MappingManager
Creates a new MappingManager using the provided Session.

O

one() - Method in class com.datastax.driver.mapping.Result
Returns the next result (i.e.

P

Param - Annotation Type in com.datastax.driver.mapping.annotations
Provides a name for a parameter of a method in an Accessor interface that can be used to reference to that parameter in method Query.
PartitionKey - Annotation Type in com.datastax.driver.mapping.annotations
Annotation for fields that map to a CQL partition key (or one of it's component if the partition key is composite).

Q

Query - Annotation Type in com.datastax.driver.mapping.annotations
Defines the CQL query that an Accessor method must implement.
QueryParameters - Annotation Type in com.datastax.driver.mapping.annotations
Query parameters to use in the (generated) implementation of a method of an Accessor interface.

R

Result<T> - Class in com.datastax.driver.mapping
A ResultSet mapped to an entity class.

S

save(T) - Method in class com.datastax.driver.mapping.Mapper
Save an entity mapped by this mapper.
saveAsync(T) - Method in class com.datastax.driver.mapping.Mapper
Save an entity mapped by this mapper asynchonously.
saveQuery(T) - Method in class com.datastax.driver.mapping.Mapper
Creates a query that can be used to save the provided entity.

T

Table - Annotation Type in com.datastax.driver.mapping.annotations
Defines to which table a class must be mapped to.
toUDT(T) - Method in class com.datastax.driver.mapping.UDTMapper
Converts a mapped class to a UDTValue.
Transient - Annotation Type in com.datastax.driver.mapping.annotations
Whenever this annotation is added on a field, the field will not be mapped to any column (neither during reads nor writes).

U

UDT - Annotation Type in com.datastax.driver.mapping.annotations
Defines to which User Defined Type a class must be mapped to.
udtMapper(Class<T>) - Method in class com.datastax.driver.mapping.MappingManager
Creates a UDTMapper for the provided class (that must be annotated by a UDT annotation).
UDTMapper<T> - Class in com.datastax.driver.mapping
An object handling the mapping of a particular class to a UDT.

V

valueOf(String) - Static method in enum com.datastax.driver.mapping.EnumType
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.datastax.driver.mapping.EnumType
Returns an array containing the constants of this enum type, in the order they are declared.
A C D E F G I M O P Q R S T U V 

Copyright © 2014. All rights reserved.