MongoDatabase 클래스
- java.lang.Object
-
- io.realm.mongodb.mongo.MongoDatabase
-
공개 클래스 MongoDatabase 확장 객체
RemoteMongoDatabase는Document
MongoCollection
에 대한 액세스를 제공합니다.
-
-
메서드 요약
모든 메서드 인스턴스 메서드 구체적인 방법 수정자 및 유형 메서드 설명 MongoCollection<Document>
getCollection(String collectionName)
collection을 가져옵니다.<DocumentT>
MongoCollection<DocumentT>getCollection(String collectionName, Class<DocumentT> documentClass)
특정 기본 문서 클래스가 있는 컬렉션을 가져옵니다.String
getName()
데이터베이스의 이름을 가져옵니다.
-
-
-
메서드 세부 정보
-
getName
public String getName()
데이터베이스의 이름을 가져옵니다.- 반환합니다:
- 데이터베이스 이름
-
getCollection
public MongoCollection<문서> getCollection(string collectionName)
collection을 가져옵니다.- 매개변수:
collectionName
- 반환할 collection의 이름- 반환합니다:
- collection
-
getCollection
public <DocumentT> MongoCollection<DocumentT> getCollection(string collectionName, 클래스<DocumentT> documentClass)
특정 기본 문서 클래스가 있는 컬렉션을 가져옵니다.- 유형 매개변수:
DocumentT
-Document
대신 사용할 클래스 유형입니다.- 매개변수:
collectionName
- 반환할 collection의 이름documentClass
- 데이터베이스에서 반환된 모든 문서를 캐스팅할 기본 클래스입니다.- 반환합니다:
- collection
-
-