得る

抽象 fun <t : Any> getValue(propertiesName : string las : KClass < T >): t

特定の null 以外の値プロパティの値を返します。

引数は、プロパティの classRealmStorageType 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

the Kotlin class of the value. Realm 内の プロパティのRealmStorageType.kClassと一致する必要があります。

t

値の型。

スロー

クラスに特定の名前のフィールドが含まれていない場合、 clazzがプロパティのRealmStorageType.kClassと一致しない場合、またはコレクション プロパティを検索しようとした場合は になります。