得る オブジェクト セット
プロパティ名で参照されるオブジェクトのセットをRealmSetとして返します。
引数は、プロパティの class
RealmStorageType の KClass である必要があります。
次のスニペットは、さまざまなセット タイプで使用できるさまざまな関数の概要を説明します。
// 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と一致しない場合。