得る オブジェクト
オブジェクト プロパティの値を返します。
引数は、プロパティの class
RealmStorageType の KClass である必要があります。
次のスニペットは、さまざまな値の型で使用できるさまざまな関数の概要を説明します。
// Retrieve a nullable int from a 'nullableIntField' property
dynamicRealmObject.getNullableValue("nullableIntField", Int::class)
// Retrieve a non-nullable int from an 'intField' property
dynamicRealmObject.getValue("intField", Int::class)
// Retrieve an object from an `objectField' property
dynamicRealmObject.getObject("objectField", DynamicRealmObject::class)
クリップボードにコピーされた内容
Return
パラメーター
プロパティ 名
値を取得するプロパティの名前。
スロー
クラスに特定の名前のフィールドが含まれていない場合、 clazz
がプロパティのRealmStorageType.kClassと一致しない場合、またはコレクション プロパティを検索しようとした場合は になります。