本文整理汇总了Java中com.vangav.backend.cassandra.keyspaces.Query类的典型用法代码示例。如果您正苦于以下问题:Java Query类的具体用法?Java Query怎么用?Java Query使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Query类属于com.vangav.backend.cassandra.keyspaces包,在下文中一共展示了Query类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: PhotosBlobs
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor PhotosBlobs
* @return new PhotosBlobs Object
* @throws Exception
*/
private PhotosBlobs () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kDeleteDescription,
kDeleteName,
kDeletePreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram,代码行数:24,代码来源:PhotosBlobs.java
示例2: UserChats
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor UserChats
* @return new UserChats Object
* @throws Exception
*/
private UserChats () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kSelectRecentDescription,
kSelectRecentName,
kSelectRecentPreparedStatement),
new Query (
kSelectAllDescription,
kSelectAllName,
kSelectAllPreparedStatement));
}
开发者ID:vangav,项目名称:vos_whatsapp,代码行数:24,代码来源:UserChats.java
示例3: DailyRequestsCounters
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor DailyRequestsCounters
* @return new DailyRequestsCounters Object
* @throws Exception
*/
private DailyRequestsCounters () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kIncrementOkResponsesDescription,
kIncrementOkResponsesName,
kIncrementOkResponsesPreparedStatement),
new Query (
kIncrementBadRequestResponsesDescription,
kIncrementBadRequestResponsesName,
kIncrementBadRequestResponsesPreparedStatement),
new Query (
kIncrementInternalErrorResponsesDescription,
kIncrementInternalErrorResponsesName,
kIncrementInternalErrorResponsesPreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram,代码行数:28,代码来源:DailyRequestsCounters.java
示例4: CurrentJobs
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor CurrentJobs
* @return new CurrentJobs Object
* @throws Exception
*/
private CurrentJobs () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kDeleteDescription,
kDeleteName,
kDeletePreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram_jobs,代码行数:24,代码来源:CurrentJobs.java
示例5: UsersIndex
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor UsersIndex
* @return new UsersIndex Object
* @throws Exception
*/
private UsersIndex () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kSelectCityDescription,
kSelectCityName,
kSelectCityPreparedStatement),
new Query (
kSelectUserDescription,
kSelectUserName,
kSelectUserPreparedStatement),
new Query (
kUpdateLastActiveDateDescription,
kUpdateLastActiveDateName,
kUpdateLastActiveDatePreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram_bots,代码行数:28,代码来源:UsersIndex.java
示例6: AuthCodes
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor AuthCodes
* @return new AuthCodes Object
* @throws Exception
*/
private AuthCodes () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement),
new Query (
kDeleteDescription,
kDeleteName,
kDeletePreparedStatement),
new Query (
kDeleteAllDescription,
kDeleteAllName,
kDeleteAllPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram,代码行数:28,代码来源:AuthCodes.java
示例7: FollowingCount
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor FollowingCount
* @return new FollowingCount Object
* @throws Exception
*/
private FollowingCount () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kIncrementDescription,
kIncrementName,
kIncrementPreparedStatement),
new Query (
kIncrementNumberDescription,
kIncrementNumberName,
kIncrementNumberPreparedStatement),
new Query (
kDecrementDescription,
kDecrementName,
kDecrementPreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram_jobs,代码行数:28,代码来源:FollowingCount.java
示例8: UserFeedPosts
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor UserFeedPosts
* @return new UserFeedPosts Object
* @throws Exception
*/
private UserFeedPosts () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kSelectRecentLimitDescription,
kSelectRecentLimitName,
kSelectRecentLimitPreparedStatement),
new Query (
kSelectAtOrBeforeTimeLimitDescription,
kSelectAtOrBeforeTimeLimitName,
kSelectAtOrBeforeTimeLimitPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram_jobs,代码行数:24,代码来源:UserFeedPosts.java
示例9: PostsCount
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor PostsCount
* @return new PostsCount Object
* @throws Exception
*/
private PostsCount () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kIncrementDescription,
kIncrementName,
kIncrementPreparedStatement),
new Query (
kIncrementValueDescription,
kIncrementValueName,
kIncrementValuePreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram_bots,代码行数:24,代码来源:PostsCount.java
示例10: PostCommentsCount
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor PostCommentsCount
* @return new PostCommentsCount Object
* @throws Exception
*/
private PostCommentsCount () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kIncrementDescription,
kIncrementName,
kIncrementPreparedStatement),
new Query (
kDecrementDescription,
kDecrementName,
kDecrementPreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram_jobs,代码行数:24,代码来源:PostCommentsCount.java
示例11: EmailCreds
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor EmailCreds
* @return new EmailCreds Object
* @throws Exception
*/
private EmailCreds () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kDeleteDescription,
kDeleteName,
kDeletePreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram,代码行数:24,代码来源:EmailCreds.java
示例12: PostsIndex
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor PostsIndex
* @return new PostsIndex Object
* @throws Exception
*/
private PostsIndex () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kSelectEarliestLimitDescription,
kSelectEarliestLimitName,
kSelectEarliestLimitPreparedStatement),
new Query (
kSelectEqualDescription,
kSelectEqualName,
kSelectEqualPreparedStatement),
new Query (
kSelectAtOrAfterLimitDescription,
kSelectAtOrAfterLimitName,
kSelectAtOrAfterLimitPreparedStatement),
new Query (
kSelectAfterLimitDescription,
kSelectAfterLimitName,
kSelectAfterLimitPreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram_jobs,代码行数:36,代码来源:PostsIndex.java
示例13: CountPerWeek
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor CountPerWeek
* @return new CountPerWeek Object
* @throws Exception
*/
private CountPerWeek () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kIncrementFollowerCountDescription,
kIncrementFollowerCountName,
kIncrementFollowerCountPreparedStatement),
new Query (
kIncrementUnfollowerCountDescription,
kIncrementUnfollowerCountName,
kIncrementUnfollowerCountPreparedStatement),
new Query (
kIncrementPostsCountDescription,
kIncrementPostsCountName,
kIncrementPostsCountPreparedStatement),
new Query (
kIncrementLikesReceivedCountDescription,
kIncrementLikesReceivedCountName,
kIncrementLikesReceivedCountPreparedStatement),
new Query (
kIncrementCommentsReceivedCountDescription,
kIncrementCommentsReceivedCountName,
kIncrementCommentsReceivedCountPreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram,代码行数:36,代码来源:CountPerWeek.java
示例14: UsersRankCountry
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor UsersRankCountry
* @return new UsersRankCountry Object
* @throws Exception
*/
private UsersRankCountry () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kSelectTopLimitDescription,
kSelectTopLimitName,
kSelectTopLimitPreparedStatement),
new Query (
kSelectTopEqualDescription,
kSelectTopEqualName,
kSelectTopEqualPreparedStatement),
new Query (
kSelectTopSmallerThanOrEqualLimitDescription,
kSelectTopSmallerThanOrEqualLimitName,
kSelectTopSmallerThanOrEqualLimitPreparedStatement),
new Query (
kSelectTopSmallerThanLimitDescription,
kSelectTopSmallerThanLimitName,
kSelectTopSmallerThanLimitPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram_jobs,代码行数:32,代码来源:UsersRankCountry.java
示例15: Follower
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor Follower
* @return new Follower Object
* @throws Exception
*/
private Follower () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kDeleteDescription,
kDeleteName,
kDeletePreparedStatement),
new Query (
kSelectRecentLimitDescription,
kSelectRecentLimitName,
kSelectRecentLimitPreparedStatement),
new Query (
kSelectAtOrBeforeTimeLimitDescription,
kSelectAtOrBeforeTimeLimitName,
kSelectAtOrBeforeTimeLimitPreparedStatement),
new Query (
kSelectAllDescription,
kSelectAllName,
kSelectAllPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram_jobs,代码行数:32,代码来源:Follower.java
示例16: AuthCreds
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor AuthCreds
* @return new AuthCreds Object
* @throws Exception
*/
private AuthCreds () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kSelectDescription,
kSelectName,
kSelectPreparedStatement));
}
开发者ID:vangav,项目名称:vos_whatsapp,代码行数:20,代码来源:AuthCreds.java
示例17: UsersInfo
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* Constructor UsersInfo
* @return new UsersInfo Object
* @throws Exception
*/
private UsersInfo () throws Exception {
super (
kKeySpaceName,
kTableName,
new Query (
kInsertDescription,
kInsertName,
kInsertPreparedStatement),
new Query (
kAddDeviceTokenDescription,
kAddDeviceTokenName,
kAddDeviceTokenPreparedStatement),
new Query (
kRemoveDeviceTokenDescription,
kRemoveDeviceTokenName,
kRemoveDeviceTokenPreparedStatement),
new Query (
kSetProfilePictureIdDescription,
kSetProfilePictureIdName,
kSetProfilePictureIdPreparedStatement),
new Query (
kSetLastActiveTimeDescription,
kSetLastActiveTimeName,
kSetLastActiveTimePreparedStatement),
new Query (
kSetLastLocationDescription,
kSetLastLocationName,
kSetLastLocationPreparedStatement),
new Query (
kSelectNameDescription,
kSelectNameName,
kSelectNamePreparedStatement),
new Query (
kSelectDeviceTokensDescription,
kSelectDeviceTokensName,
kSelectDeviceTokensPreparedStatement),
new Query (
kSelectProfilePictureIdDescription,
kSelectProfilePictureIdName,
kSelectProfilePictureIdPreparedStatement),
new Query (
kSelectRegistrationTimeDescription,
kSelectRegistrationTimeName,
kSelectRegistrationTimePreparedStatement),
new Query (
kSelectLastActiveTimeDescription,
kSelectLastActiveTimeName,
kSelectLastActiveTimePreparedStatement),
new Query (
kSelectLastLocationDescription,
kSelectLastLocationName,
kSelectLastLocationPreparedStatement),
new Query (
kSelectAllDescription,
kSelectAllName,
kSelectAllPreparedStatement));
}
开发者ID:vangav,项目名称:vos_instagram_jobs,代码行数:64,代码来源:UsersInfo.java
示例18: getQueryInsert
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* getQueryInsert
* @return Insert Query in the form of
* a Query Object
* @throws Exception
*/
public Query getQueryInsert (
) throws Exception {
return this.getQuery(kInsertName);
}
开发者ID:vangav,项目名称:vos_instagram,代码行数:12,代码来源:DeviceTokens.java
示例19: getQuerySelectTopSmallerThanOrEqualLimit
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* getQuerySelectTopSmallerThanOrEqualLimit
* @return SelectTopSmallerThanOrEqualLimit Query in the form of
* a Query Object
* @throws Exception
*/
public Query getQuerySelectTopSmallerThanOrEqualLimit (
) throws Exception {
return this.getQuery(kSelectTopSmallerThanOrEqualLimitName);
}
开发者ID:vangav,项目名称:vos_instagram,代码行数:12,代码来源:PostsRankWorld.java
示例20: getQuerySelect
import com.vangav.backend.cassandra.keyspaces.Query; //导入依赖的package包/类
/**
* getQuerySelect
* @return Select Query in the form of
* a Query Object
* @throws Exception
*/
public Query getQuerySelect (
) throws Exception {
return this.getQuery(kSelectName);
}
开发者ID:vangav,项目名称:vos_vangav_analytics_writer,代码行数:12,代码来源:MonthlyActionCounters.java
注:本文中的com.vangav.backend.cassandra.keyspaces.Query类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论