當前位置: 首頁>>代碼示例>>Java>>正文


Java Filters.lt方法代碼示例

本文整理匯總了Java中com.mongodb.client.model.Filters.lt方法的典型用法代碼示例。如果您正苦於以下問題:Java Filters.lt方法的具體用法?Java Filters.lt怎麽用?Java Filters.lt使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.mongodb.client.model.Filters的用法示例。


在下文中一共展示了Filters.lt方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getFilterBson

import com.mongodb.client.model.Filters; //導入方法依賴的package包/類
public static Bson getFilterBson(MatchOperator operator , String attributeName , Object value){
	Bson filter = null;
	switch(operator){
	case GT : 
		filter=Filters.gt(attributeName, value);
		break;
	case LT : 
		filter=Filters.lt(attributeName, value);
		break;
	case GTE : 
		filter=Filters.gte(attributeName, value);
		break;
	case LTE : 
		filter=Filters.lte(attributeName, value);
		break;
	case EQ :
		filter=Filters.eq(attributeName, value);
		break;
	case NE : 
		filter=Filters.ne(attributeName, value);
		break;
	default :
		filter=Filters.eq(attributeName, value);
		break;
	}
	return filter;
}
 
開發者ID:gagoyal01,項目名稱:mongodb-rdbms-sync,代碼行數:28,代碼來源:MongoDbUtilities.java

示例2: getUserChatNum

import com.mongodb.client.model.Filters; //導入方法依賴的package包/類
public static long getUserChatNum(String toTypeId, String fromUserId, String chatCreateTime) {
	if (StringUtil.stringIsNull(toTypeId) || StringUtil.stringIsNull(fromUserId)) {
		return 0;
	}
	Date date = null;
	if (!StringUtil.stringIsNull(chatCreateTime)) {
		date = TimeUtils.stringToDateDay(chatCreateTime);
	}
	Bson filter = null;
	if (!StringUtil.stringIsNull(chatCreateTime)) {
		filter = Filters.lt(ChatObj.CHAT_CREATE_TIME, String.valueOf(date.getTime()));
	}
	long count = MongodbManager.count(getUserToUserCollectionName(toTypeId, fromUserId), filter);
	return count;
}
 
開發者ID:dianbaer,項目名稱:anychat,代碼行數:16,代碼來源:ChatActionMongodb.java

示例3: getGroupChatNum

import com.mongodb.client.model.Filters; //導入方法依賴的package包/類
public static long getGroupChatNum(String toTypeId, String chatCreateTime) {
	if (StringUtil.stringIsNull(toTypeId)) {
		return 0;
	}
	Date date = null;
	if (!StringUtil.stringIsNull(chatCreateTime)) {
		date = TimeUtils.stringToDateDay(chatCreateTime);
	}
	Bson filter = null;
	if (!StringUtil.stringIsNull(chatCreateTime)) {
		filter = Filters.lt(ChatObj.CHAT_CREATE_TIME, String.valueOf(date.getTime()));
	}
	long count = MongodbManager.count(toTypeId, filter);
	return count;
}
 
開發者ID:dianbaer,項目名稱:anychat,代碼行數:16,代碼來源:ChatActionMongodb.java

示例4: lt

import com.mongodb.client.model.Filters; //導入方法依賴的package包/類
/**
 * 小於
 *
 * @param name  字段名
 * @param value 字段值
 * @return
 */
public static MongodbQuery lt(String name, Object value) {
    return new MongodbQuery(Filters.lt(name, value));
}
 
開發者ID:wxz1211,項目名稱:dooo,代碼行數:11,代碼來源:MongodbQuery.java


注:本文中的com.mongodb.client.model.Filters.lt方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。