get객체세트

추상 fun getObjectSet(속성 이름: string): RealmSet<out DynamicRealmObject>

속성 이름이 참조하는 객체 설정하다 를 RealmSet 로 반환합니다.

class 인수는 속성에 대한 RealmStorageTypeKClass 여야 합니다.

다음 스니펫은 다양한 세트 유형에 사용할 수 있는 다양한 함수를 간략하게 설명합니다.

// Retrieve a set of nullable ints from a 'nullableIntSet' property
dynamicRealmObject.getNullableValueSet("nullableIntSet", Int::class)

// Retrieve a set of non-nullable ints from a 'intSet' property
dynamicRealmObject.getValueSet("intSet", Int::class)

// Retrieve a set of objects from an `objectSet' property
// Object sets are ALWAYS non-nullable
dynamicRealmObject.getObjectSet("objectSet", DynamicRealmObject::class)

Return

참조 된 RealmSet

매개변수

속성이름

세트를 검색할 세트 속성의 이름입니다.

스로우

클래스에 특정 이름의 필드가 포함되어 있지 않은 경우, 설정되지 않은 속성의 값을 검색하려고 하는 경우 또는 clazz 가 속성의 RealmStorageType.kClass 와 일치하지 않는 경우 등이 있습니다.