得るnull 可能な 値 リスト

抽象 fun <t : Any> getNullableValueList(propertiesName : string las : KClass < T >): RealmList<t?>

プロパティ名が参照する null 可能な要素のリストをRealmListとして返します。

引数は、プロパティの classRealmStorageType 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と一致しない場合。