本文整理了Java中com.mongodb.client.model.Updates.addToSet()
方法的一些代码示例,展示了Updates.addToSet()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Updates.addToSet()
方法的具体详情如下:
包路径:com.mongodb.client.model.Updates
类名称:Updates
方法名:addToSet
[英]Creates an update that adds the given value to the array value of the field with the given name, unless the value is already present, in which case it does nothing
[中]创建一个更新,将给定值添加到具有给定名称的字段的数组值中,除非该值已经存在,否则在这种情况下它不会执行任何操作
代码示例来源:origin: protegeproject/webprotege
public Bson appendComment(Comment comment) {
return Updates.addToSet(COMMENTS, comment);
}
}
代码示例来源:origin: opencb/opencga
bsons.add(set(studyIdStr + '.' + NEW_STUDY_FIELD, false));
} else if (binaryList.size() == 1) {
bsons.add(resumeStageLoad ? addToSet(fieldName, binaryList.get(0)) : push(fieldName, binaryList.get(0)));
} else {
bsons.add(resumeStageLoad ? addEachToSet(fieldName, binaryList) : pushEach(fieldName, binaryList));
代码示例来源:origin: opencb/opencga
updates.add(push(STUDIES_FIELD, studyDocument));
updates.add(addToSet(RELEASE_FIELD, release));
if (newVariant) {
Document variantDocument = variantConverter.convertToStorageType(emptyVar);
mergeUpdates.add(addToSet(RELEASE_FIELD, release));
} else if (!mergeUpdates.isEmpty()) {
内容来源于网络,如有侵权,请联系作者删除!