MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Codice Java dell'operatore $cond

Esempio seguente qui puoi creare l'array per l'operatore "$cond" in questo modo:

ArrayList gtA = new ArrayList();
gtA.add("$Sentiment");
gtA.add(0);
ArrayList condArray = new ArrayList();
condArray.add(new BasicDBObject("$gt", gtA));
condArray.add(1);
condArray.add(0);
BasicDBObject fullCond = new BasicDBObject("$cond", condArray);