1つの代替方法は、MongoIterable.into
を使用することです。 contains("collectionName")
を呼び出すことができるターゲットArrayListにこれらを追加する関数 の上。
boolean collectionExists = client.getDatabase("dbName").listCollectionNames()
.into(new ArrayList<String>()).contains("collectionName")
1つの代替方法は、MongoIterable.into
を使用することです。 contains("collectionName")
を呼び出すことができるターゲットArrayListにこれらを追加する関数 の上。
boolean collectionExists = client.getDatabase("dbName").listCollectionNames()
.into(new ArrayList<String>()).contains("collectionName")