得る null 可能な 値 リスト
プロパティ名が参照する null 可能な要素のリストをRealmListとして返します。
引数は、プロパティの class
RealmStorageType の KClass である必要があります。
次のスニペットは、さまざまなリスト タイプで使用できるさまざまな関数の概要を説明します。
// Retrieve a list of nullable ints from a 'nullableIntList' property
dynamicRealmObject.getNullableValueList("nullableIntList", Int::class)
// Retrieve a list of non-nullable ints from a 'intList' property
dynamicRealmObject.getValueList("intList", Int::class)
// Retrieve a list of objects from an `objectList' property
// Object lists are ALWAYS non-nullable
dynamicRealmObject.getObjectList("objectList", DynamicRealmObject::class)
クリップボードにコピーされた内容
Return
参照されたRealmList
パラメーター
プロパティ 名
リストを検索するリスト プロパティの名前。
clazz
リスト要素型の Kotlin クラス。
t
リスト要素の型 の型。
スロー
クラスに特定の名前のフィールドが含まれていない場合、リスト以外のプロパティの値を検索しようとした場合、またはclazz
がプロパティのRealmStorageType.kClassと一致しない場合。