Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package info.archinnov.achilles.generated.dsl;
import com.datastax.driver.core.querybuilder.QueryBuilder;
import com.datastax.driver.core.querybuilder.Select;
import info.archinnov.achilles.generated.meta.entity.EntityForAggregate_AchillesMeta;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelect;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectColumns;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectColumnsTypeMap;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectFrom;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectFromJSON;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectFromTypeMap;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectWhere;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectWhereJSON;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectWherePartition;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectWherePartitionJSON;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectWherePartitionTypeMap;
import info.archinnov.achilles.internals.dsl.query.select.AbstractSelectWhereTypeMap;
import info.archinnov.achilles.internals.entities.EntityForAggregate;
import info.archinnov.achilles.internals.metamodel.AbstractEntityProperty;
import info.archinnov.achilles.internals.metamodel.functions.FunctionCall;
import info.archinnov.achilles.internals.options.CassandraOptions;
import info.archinnov.achilles.internals.runtime.RuntimeEngine;
import info.archinnov.achilles.type.SchemaNameProvider;
import info.archinnov.achilles.validation.Validator;
import java.lang.Class;
import java.lang.Integer;
import java.lang.Long;
import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import org.apache.commons.lang3.ArrayUtils;
public final class EntityForAggregate_Select extends AbstractSelect {
protected final EntityForAggregate_AchillesMeta meta;
protected final Class entityClass = EntityForAggregate.class;
public EntityForAggregate_Select(RuntimeEngine rte, EntityForAggregate_AchillesMeta meta) {
super(rte);
this.meta = meta;
}
/**
* Generate a SELECT ... partition ... */
public final EntityForAggregate_Select.Cols partition() {
select.column("partition");
return new EntityForAggregate_Select.Cols(select);
}
/**
* Generate a SELECT ... clustering ... */
public final EntityForAggregate_Select.Cols clustering() {
select.column("clustering");
return new EntityForAggregate_Select.Cols(select);
}
/**
* Generate a SELECT ... stringval ... */
public final EntityForAggregate_Select.Cols stringVal() {
select.column("stringval");
return new EntityForAggregate_Select.Cols(select);
}
/**
* Generate a SELECT ... doubleval ... */
public final EntityForAggregate_Select.Cols doubleVal() {
select.column("doubleval");
return new EntityForAggregate_Select.Cols(select);
}
/**
* Use this method to call a system or user-defined function. All the system functions are accessible from the {@link info.archinnov.achilles.generated.function.SystemFunctions} class All the user-defined functions and aggregates are accessible from the {@link info.archinnov.achilles.generated.function.FunctionsRegistry} class System and user-defined functions accept only appropriate type. To pass in an entity field as function argument, use the generated manager.COLUMNS class which exposes all columns with their appropriate type Example:
* {@literal @}Table
* public class MyEntity {
*
* ...
*
* {@literal @}Column("value_column")
* private String value;
*
* {@literal @}Column("list_of_string")
* private List strings;
*
* ...
*
* }
*
* {@literal @}FunctionsRegistry
* public interface MyFunctions {
*
* String convertListToJson(List strings);
*
* }
*
*
* ...
*
*
* manager
* .dsl()
* .select()
* // This call will generate SELECT cast(writetime(value_column) as text) AS writetimeOfValueAsString, ...
* .function(SystemFunctions.castAsText(SystemFunctions.writetime(manager.COLUMNS.VALUE)), "writetimeOfValueAsString")
* ...
*
* manager
* .dsl()
* .select()
* // This call will generate SELECT convertlisttojson(list_of_string) AS strings_as_json, ...
* .function(FunctionsRegistry.convertListToJson(manager.COLUMNS.STRINGS), "strings_as_json")
* ...
*
*
*
* @param functionCall the function call object
* @param alias mandatory alias for this function call for easier retrieval from the ResultSet
* @return a built-in function call passed to the QueryBuilder object
*/
public final EntityForAggregate_Select.ColsTM function(final FunctionCall functionCall, final String alias) {
functionCall.addToSelect(select, alias);
return new EntityForAggregate_Select.ColsTM(select);
}
/**
* Generate ... * FROM ... */
public final EntityForAggregate_Select.F allColumns_FromBaseTable() {
final Select.Where where = select.all().from(meta.getKeyspace().orElse("unknown_keyspace_for_" + meta.entityClass.getCanonicalName()), meta.getTableOrViewName()).where();
return new EntityForAggregate_Select.F(where, new CassandraOptions());
}
/**
* Generate ... * FROM ... using the given SchemaNameProvider */
public final EntityForAggregate_Select.F allColumns_From(final SchemaNameProvider schemaNameProvider) {
final String currentKeyspace = lookupKeyspace(schemaNameProvider, meta.entityClass);
final String currentTable = lookupTable(schemaNameProvider, meta.entityClass);
final Select.Where where = select.all().from(currentKeyspace, currentTable).where();
return new EntityForAggregate_Select.F(where, CassandraOptions.withSchemaNameProvider(schemaNameProvider));
}
/**
* Generate ... * FROM ... */
public final EntityForAggregate_Select.F_J allColumnsAsJSON_FromBaseTable() {
final Select.Where where = select.json().all().from(meta.getKeyspace().orElse("unknown_keyspace_for_" + meta.entityClass.getCanonicalName()), meta.getTableOrViewName()).where();
return new EntityForAggregate_Select.F_J(where, new CassandraOptions());
}
/**
* Generate ... * FROM ... using the given SchemaNameProvider */
public final EntityForAggregate_Select.F_J allColumnsAsJSON_From(final SchemaNameProvider schemaNameProvider) {
final String currentKeyspace = lookupKeyspace(schemaNameProvider, meta.entityClass);
final String currentTable = lookupTable(schemaNameProvider, meta.entityClass);
final Select.Where where = select.json().all().from(currentKeyspace, currentTable).where();
return new EntityForAggregate_Select.F_J(where, CassandraOptions.withSchemaNameProvider(schemaNameProvider));
}
public class Cols extends AbstractSelectColumns {
public Cols(Select.Selection selection) {
super(selection);
}
/**
* Generate a SELECT ... partition ... */
public final EntityForAggregate_Select.Cols partition() {
selection.column("partition");
return this;
}
/**
* Generate a SELECT ... clustering ... */
public final EntityForAggregate_Select.Cols clustering() {
selection.column("clustering");
return this;
}
/**
* Generate a SELECT ... stringval ... */
public final EntityForAggregate_Select.Cols stringVal() {
selection.column("stringval");
return this;
}
/**
* Generate a SELECT ... doubleval ... */
public final EntityForAggregate_Select.Cols doubleVal() {
selection.column("doubleval");
return this;
}
/**
* Use this method to call a system or user-defined function. All the system functions are accessible from the {@link info.archinnov.achilles.generated.function.SystemFunctions} class All the user-defined functions and aggregates are accessible from the {@link info.archinnov.achilles.generated.function.FunctionsRegistry} class System and user-defined functions accept only appropriate type. To pass in an entity field as function argument, use the generated manager.COLUMNS class which exposes all columns with their appropriate type Example:
* {@literal @}Table
* public class MyEntity {
*
* ...
*
* {@literal @}Column("value_column")
* private String value;
*
* {@literal @}Column("list_of_string")
* private List strings;
*
* ...
*
* }
*
* {@literal @}FunctionsRegistry
* public interface MyFunctions {
*
* String convertListToJson(List strings);
*
* }
*
*
* ...
*
*
* manager
* .dsl()
* .select()
* // This call will generate SELECT cast(writetime(value_column) as text) AS writetimeOfValueAsString, ...
* .function(SystemFunctions.castAsText(SystemFunctions.writetime(manager.COLUMNS.VALUE)), "writetimeOfValueAsString")
* ...
*
* manager
* .dsl()
* .select()
* // This call will generate SELECT convertlisttojson(list_of_string) AS strings_as_json, ...
* .function(FunctionsRegistry.convertListToJson(manager.COLUMNS.STRINGS), "strings_as_json")
* ...
*
*
*
* @param functionCall the function call object
* @param alias mandatory alias for this function call for easier retrieval from the ResultSet
* @return a built-in function call passed to the QueryBuilder object
*/
public final EntityForAggregate_Select.ColsTM function(final FunctionCall functionCall, final String alias) {
functionCall.addToSelect(selection, alias);
return new EntityForAggregate_Select.ColsTM(select);
}
/**
* Generate a ... FROM xxx ... */
public final EntityForAggregate_Select.F fromBaseTable() {
final Select.Where where = selection.from(meta.getKeyspace().orElse("unknown_keyspace_for_" + meta.entityClass.getCanonicalName()), meta.getTableOrViewName()).where();
return new EntityForAggregate_Select.F(where, new CassandraOptions());
}
/**
* Generate a ... FROM xxx ... using the given SchemaNameProvider */
public final EntityForAggregate_Select.F from(final SchemaNameProvider schemaNameProvider) {
final String currentKeyspace = lookupKeyspace(schemaNameProvider, meta.entityClass);
final String currentTable = lookupTable(schemaNameProvider, meta.entityClass);
final Select.Where where = selection.from(currentKeyspace, currentTable).where();
return new EntityForAggregate_Select.F(where, CassandraOptions.withSchemaNameProvider(schemaNameProvider));
}
}
public class ColsTM extends AbstractSelectColumnsTypeMap {
public ColsTM(Select.Selection selection) {
super(selection);
}
/**
* Generate a SELECT ... partition ... */
public final EntityForAggregate_Select.ColsTM partition() {
selection.column("partition");
return this;
}
/**
* Generate a SELECT ... clustering ... */
public final EntityForAggregate_Select.ColsTM clustering() {
selection.column("clustering");
return this;
}
/**
* Generate a SELECT ... stringval ... */
public final EntityForAggregate_Select.ColsTM stringVal() {
selection.column("stringval");
return this;
}
/**
* Generate a SELECT ... doubleval ... */
public final EntityForAggregate_Select.ColsTM doubleVal() {
selection.column("doubleval");
return this;
}
/**
* Use this method to call a system or user-defined function. All the system functions are accessible from the {@link info.archinnov.achilles.generated.function.SystemFunctions} class All the user-defined functions and aggregates are accessible from the {@link info.archinnov.achilles.generated.function.FunctionsRegistry} class System and user-defined functions accept only appropriate type. To pass in an entity field as function argument, use the generated manager.COLUMNS class which exposes all columns with their appropriate type Example:
* {@literal @}Table
* public class MyEntity {
*
* ...
*
* {@literal @}Column("value_column")
* private String value;
*
* {@literal @}Column("list_of_string")
* private List strings;
*
* ...
*
* }
*
* {@literal @}FunctionsRegistry
* public interface MyFunctions {
*
* String convertListToJson(List strings);
*
* }
*
*
* ...
*
*
* manager
* .dsl()
* .select()
* // This call will generate SELECT cast(writetime(value_column) as text) AS writetimeOfValueAsString, ...
* .function(SystemFunctions.castAsText(SystemFunctions.writetime(manager.COLUMNS.VALUE)), "writetimeOfValueAsString")
* ...
*
* manager
* .dsl()
* .select()
* // This call will generate SELECT convertlisttojson(list_of_string) AS strings_as_json, ...
* .function(FunctionsRegistry.convertListToJson(manager.COLUMNS.STRINGS), "strings_as_json")
* ...
*
*
*
* @param functionCall the function call object
* @param alias mandatory alias for this function call for easier retrieval from the ResultSet
* @return a built-in function call passed to the QueryBuilder object
*/
public final EntityForAggregate_Select.ColsTM function(final FunctionCall functionCall, final String alias) {
functionCall.addToSelect(selection, alias);
return this;
}
/**
* Generate a ... FROM xxx ... */
public final EntityForAggregate_Select.F_TM fromBaseTable() {
final Select.Where where = selection.from(meta.getKeyspace().orElse("unknown_keyspace_for_" + meta.entityClass.getCanonicalName()), meta.getTableOrViewName()).where();
return new EntityForAggregate_Select.F_TM(where, new CassandraOptions());
}
/**
* Generate a ... FROM xxx ... using the given SchemaNameProvider */
public final EntityForAggregate_Select.F_TM from(final SchemaNameProvider schemaNameProvider) {
final String currentKeyspace = lookupKeyspace(schemaNameProvider, meta.entityClass);
final String currentTable = lookupTable(schemaNameProvider, meta.entityClass);
final Select.Where where = selection.from(currentKeyspace, currentTable).where();
return new EntityForAggregate_Select.F_TM(where, CassandraOptions.withSchemaNameProvider(schemaNameProvider));
}
}
public class F extends AbstractSelectFrom {
F(Select.Where where, CassandraOptions cassandraOptions) {
super(where, cassandraOptions);
}
/**
* Generate a SELECT ... FROM ... WHERE ... */
public final EntityForAggregate_Select.W_Partition where() {
return new EntityForAggregate_Select.W_Partition(where, cassandraOptions);
}
/**
* Generate a SELECT statement without the WHERE clause */
public final EntityForAggregate_Select.E without_WHERE_Clause() {
return new EntityForAggregate_Select.E(where, cassandraOptions);
}
}
public class F_TM extends AbstractSelectFromTypeMap {
F_TM(Select.Where where, CassandraOptions cassandraOptions) {
super(where, cassandraOptions);
}
/**
* Generate a SELECT ... FROM ... WHERE ... */
public final EntityForAggregate_Select.W_TM_Partition where() {
return new EntityForAggregate_Select.W_TM_Partition(where, cassandraOptions);
}
/**
* Generate a SELECT statement without the WHERE clause */
public final EntityForAggregate_Select.E_TM without_WHERE_Clause() {
return new EntityForAggregate_Select.E_TM(where, cassandraOptions);
}
}
public class F_J extends AbstractSelectFromJSON {
F_J(Select.Where where, CassandraOptions cassandraOptions) {
super(where, cassandraOptions);
}
/**
* Generate a SELECT ... FROM ... WHERE ... */
public final EntityForAggregate_Select.W_J_Partition where() {
return new EntityForAggregate_Select.W_J_Partition(where, cassandraOptions);
}
/**
* Generate a SELECT statement without the WHERE clause */
public final EntityForAggregate_Select.E_J without_WHERE_Clause() {
return new EntityForAggregate_Select.E_J(where, cassandraOptions);
}
}
public final class W_Partition extends AbstractSelectWherePartition {
public W_Partition(Select.Where where, CassandraOptions cassandraOptions) {
super(where, cassandraOptions);
}
public final EntityForAggregate_Select.W_Partition.Relation partition() {
return new EntityForAggregate_Select.W_Partition.Relation();
}
public final EntityForAggregate_Select.W_Partition.Token tokenValueOf_partition() {
return new EntityForAggregate_Select.W_Partition.Token();
}
public final class Relation {
/**
* Generate a SELECT ... FROM ... WHERE ... partition = ? */
@SuppressWarnings("static-access")
public final EntityForAggregate_Select.W_Clustering Eq(Long partition) {
where.and(QueryBuilder.eq("partition", QueryBuilder.bindMarker("partition")));
boundValues.add(partition);
encodedValues.add(meta.partition.encodeFromJava(partition, Optional.of(cassandraOptions)));
return new EntityForAggregate_Select.W_Clustering(where, cassandraOptions);
}
/**
* Generate a SELECT ... FROM ... WHERE ... partition IN ? */
@SuppressWarnings("static-access")
public final EntityForAggregate_Select.W_Clustering IN(Long... partition) {
Validator.validateTrue(ArrayUtils.isNotEmpty(partition), "Varargs for field '%s' should not be null/empty", "partition");
where.and(QueryBuilder.in("partition",QueryBuilder.bindMarker("partition")));
final List