得るオブジェクト リスト

抽象 fun getObjectList(propertiesName : string): RealmList<out DescribeRealmObject>

プロパティ名が参照するオブジェクトのリストを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がプロパティのRealmStorageType.kClassと一致しない場合。