Package blue. starry. jsonkt. delegation
Types
BooleanJsonEnum
Link copied to clipboard
CachingReadOnlyProperty
Link copied to clipboard
open class CachingReadOnlyProperty<in R, out T> : ReadOnlyProperty<R, T>
Content copied to clipboard
CharJsonEnum
Link copied to clipboard
DoubleJsonEnum
Link copied to clipboard
FloatJsonEnum
Link copied to clipboard
IntJsonEnum
Link copied to clipboard
JsonArrayProperty
Link copied to clipboard
JsonDelegateProperty
Link copied to clipboard
class JsonDelegateProperty<out T>(key: String?, initializer: PropertyInitializer<T>) : ReadOnlyProperty<Any?, T>
Content copied to clipboard
JsonKeyCase
Link copied to clipboard
JsonKeyConverter
Link copied to clipboard
JsonObjectProperty
Link copied to clipboard
LongJsonEnum
Link copied to clipboard
NoSuchEnumMemberException
Link copied to clipboard
class NoSuchEnumMemberException(enumClass: KClass<*>, value: Any) : JsonKtException
Content copied to clipboard
StringJsonEnum
Link copied to clipboard
Functions
booleanList
Link copied to clipboard
fun JsonModel.booleanList(key: String): JsonDelegateProperty<List<Boolean>>
Content copied to clipboard
fun JsonModel.booleanList(key: String? = null, default: JsonArrayDefaultSelector<Boolean>): JsonDelegateProperty<List<Boolean>>
Content copied to clipboard
fun JsonModel.booleanList(key: String? = null, default: List<Boolean>): JsonDelegateProperty<List<Boolean>>
Content copied to clipboard
booleanValue
Link copied to clipboard
booleanValueOrNull
Link copied to clipboard
byBoolean
Link copied to clipboard
fun JsonObject.byBoolean(key: String? = null, default: Boolean): JsonDelegateProperty<Boolean>
Content copied to clipboard
fun JsonObject.byBoolean(key: String? = null, default: JsonObjectDefaultSelector<Boolean>): JsonDelegateProperty<Boolean>
Content copied to clipboard
byBooleanList
Link copied to clipboard
fun JsonObject.byBooleanList(key: String): JsonDelegateProperty<List<Boolean>>
Content copied to clipboard
fun JsonObject.byBooleanList(key: String? = null, default: JsonArrayDefaultSelector<Boolean>): JsonDelegateProperty<List<Boolean>>
Content copied to clipboard
fun JsonObject.byBooleanList(key: String? = null, default: List<Boolean>): JsonDelegateProperty<List<Boolean>>
Content copied to clipboard
byChar
Link copied to clipboard
fun JsonObject.byChar(key: String? = null, default: Char): JsonDelegateProperty<Char>
Content copied to clipboard
fun JsonObject.byChar(key: String? = null, default: JsonObjectDefaultSelector<Char>): JsonDelegateProperty<Char>
Content copied to clipboard
byCharList
Link copied to clipboard
fun JsonObject.byCharList(key: String? = null, default: JsonArrayDefaultSelector<Char>): JsonDelegateProperty<List<Char>>
Content copied to clipboard
fun JsonObject.byCharList(key: String? = null, default: List<Char>): JsonDelegateProperty<List<Char>>
Content copied to clipboard
byDouble
Link copied to clipboard
fun JsonObject.byDouble(key: String? = null, default: Double): JsonDelegateProperty<Double>
Content copied to clipboard
fun JsonObject.byDouble(key: String? = null, default: JsonObjectDefaultSelector<Double>): JsonDelegateProperty<Double>
Content copied to clipboard
byDoubleList
Link copied to clipboard
fun JsonObject.byDoubleList(key: String): JsonDelegateProperty<List<Double>>
Content copied to clipboard
fun JsonObject.byDoubleList(key: String? = null, default: JsonArrayDefaultSelector<Double>): JsonDelegateProperty<List<Double>>
Content copied to clipboard
fun JsonObject.byDoubleList(key: String? = null, default: List<Double>): JsonDelegateProperty<List<Double>>
Content copied to clipboard
byEnumList
Link copied to clipboard
inline fun <T : Any, E : Enum<E>, JsonEnum<T>> JsonObject.byEnumList(key: String? = null, noinline default: JsonArrayDefaultSelector<E> = ::jsonArrayDefaultSelector): JsonArrayProperty<E>
Content copied to clipboard
byFloat
Link copied to clipboard
fun JsonObject.byFloat(key: String? = null, default: Float): JsonDelegateProperty<Float>
Content copied to clipboard
fun JsonObject.byFloat(key: String? = null, default: JsonObjectDefaultSelector<Float>): JsonDelegateProperty<Float>
Content copied to clipboard
byFloatList
Link copied to clipboard
fun JsonObject.byFloatList(key: String): JsonDelegateProperty<List<Float>>
Content copied to clipboard
fun JsonObject.byFloatList(key: String? = null, default: JsonArrayDefaultSelector<Float>): JsonDelegateProperty<List<Float>>
Content copied to clipboard
fun JsonObject.byFloatList(key: String? = null, default: List<Float>): JsonDelegateProperty<List<Float>>
Content copied to clipboard
byInt
Link copied to clipboard
fun JsonObject.byInt(key: String? = null, default: JsonObjectDefaultSelector<Int>): JsonDelegateProperty<Int>
Content copied to clipboard
fun JsonObject.byInt(key: String? = null, default: Int): JsonDelegateProperty<Int>
Content copied to clipboard
byIntList
Link copied to clipboard
fun JsonObject.byIntList(key: String? = null, default: JsonArrayDefaultSelector<Int>): JsonDelegateProperty<List<Int>>
Content copied to clipboard
fun JsonObject.byIntList(key: String? = null, default: List<Int>): JsonDelegateProperty<List<Int>>
Content copied to clipboard
byJsonArray
Link copied to clipboard
fun JsonObject.byJsonArray(key: String? = null, default: JsonObjectDefaultSelector<JsonArray>): JsonDelegateProperty<JsonArray>
Content copied to clipboard
fun JsonObject.byJsonArray(key: String? = null, default: JsonArray): JsonDelegateProperty<JsonArray>
Content copied to clipboard
byJsonArrayList
Link copied to clipboard
fun JsonObject.byJsonArrayList(key: String): JsonDelegateProperty<List<JsonArray>>
Content copied to clipboard
fun JsonObject.byJsonArrayList(key: String? = null, default: JsonArrayDefaultSelector<JsonArray>): JsonDelegateProperty<List<JsonArray>>
Content copied to clipboard
fun JsonObject.byJsonArrayList(key: String? = null, default: List<JsonArray>): JsonDelegateProperty<List<JsonArray>>
Content copied to clipboard
byJsonElement
Link copied to clipboard
fun JsonObject.byJsonElement(key: String): JsonDelegateProperty<JsonElement>
Content copied to clipboard
fun JsonObject.byJsonElement(key: String? = null, default: JsonObjectDefaultSelector<JsonElement>): JsonDelegateProperty<JsonElement>
Content copied to clipboard
fun JsonObject.byJsonElement(key: String? = null, default: JsonElement): JsonDelegateProperty<JsonElement>
Content copied to clipboard
byJsonElementList
Link copied to clipboard
fun JsonObject.byJsonElementList(key: String): JsonDelegateProperty<List<JsonElement>>
Content copied to clipboard
fun JsonObject.byJsonElementList(key: String? = null, default: JsonArrayDefaultSelector<JsonElement>): JsonDelegateProperty<List<JsonElement>>
Content copied to clipboard
fun JsonObject.byJsonElementList(key: String? = null, default: List<JsonElement>): JsonDelegateProperty<List<JsonElement>>
Content copied to clipboard
byJsonObject
Link copied to clipboard
fun JsonObject.byJsonObject(key: String): JsonDelegateProperty<JsonObject>
Content copied to clipboard
fun JsonObject.byJsonObject(key: String? = null, default: JsonObjectDefaultSelector<JsonObject>): JsonDelegateProperty<JsonObject>
Content copied to clipboard
fun JsonObject.byJsonObject(key: String? = null, default: JsonObject): JsonDelegateProperty<JsonObject>
Content copied to clipboard
byJsonObjectList
Link copied to clipboard
fun JsonObject.byJsonObjectList(key: String): JsonDelegateProperty<List<JsonObject>>
Content copied to clipboard
fun JsonObject.byJsonObjectList(key: String? = null, default: JsonArrayDefaultSelector<JsonObject>): JsonDelegateProperty<List<JsonObject>>
Content copied to clipboard
fun JsonObject.byJsonObjectList(key: String? = null, default: List<JsonObject>): JsonDelegateProperty<List<JsonObject>>
Content copied to clipboard
byJsonPrimitive
Link copied to clipboard
fun JsonObject.byJsonPrimitive(key: String): JsonDelegateProperty<JsonPrimitive>
Content copied to clipboard
fun JsonObject.byJsonPrimitive(key: String? = null, default: JsonObjectDefaultSelector<JsonPrimitive>): JsonDelegateProperty<JsonPrimitive>
Content copied to clipboard
fun JsonObject.byJsonPrimitive(key: String? = null, default: JsonPrimitive): JsonDelegateProperty<JsonPrimitive>
Content copied to clipboard
byJsonPrimitiveList
Link copied to clipboard
fun JsonObject.byJsonPrimitiveList(key: String): JsonDelegateProperty<List<JsonPrimitive>>
Content copied to clipboard
fun JsonObject.byJsonPrimitiveList(key: String? = null, default: JsonArrayDefaultSelector<JsonPrimitive>): JsonDelegateProperty<List<JsonPrimitive>>
Content copied to clipboard
fun JsonObject.byJsonPrimitiveList(key: String? = null, default: List<JsonPrimitive>): JsonDelegateProperty<List<JsonPrimitive>>
Content copied to clipboard
byLambda
Link copied to clipboard
fun <T : Any> JsonObject.byLambda(key: String? = null, converter: JsonElementConverter<T>): JsonObjectProperty<T>
Content copied to clipboard
fun <T : Any> JsonObject.byLambda(key: String? = null, default: T, converter: JsonElementConverter<T>): JsonObjectProperty<T>
Content copied to clipboard
fun <T : Any> JsonObject.byLambda(key: String? = null, default: JsonObjectDefaultSelector<T>, converter: JsonElementConverter<T>): JsonObjectProperty<T>
Content copied to clipboard
byLambdaList
Link copied to clipboard
fun <T : Any> JsonObject.byLambdaList(key: String? = null, converter: JsonElementConverter<T>): JsonArrayProperty<T>
Content copied to clipboard
fun <T : Any> JsonObject.byLambdaList(key: String? = null, default: JsonArrayDefaultSelector<T>, converter: JsonElementConverter<T>): JsonArrayProperty<T>
Content copied to clipboard
fun <T : Any> JsonObject.byLambdaList(key: String? = null, default: List<T>, converter: JsonElementConverter<T>): JsonArrayProperty<T>
Content copied to clipboard
byLong
Link copied to clipboard
fun JsonObject.byLong(key: String? = null, default: JsonObjectDefaultSelector<Long>): JsonDelegateProperty<Long>
Content copied to clipboard
fun JsonObject.byLong(key: String? = null, default: Long): JsonDelegateProperty<Long>
Content copied to clipboard
byLongList
Link copied to clipboard
fun JsonObject.byLongList(key: String? = null, default: JsonArrayDefaultSelector<Long>): JsonDelegateProperty<List<Long>>
Content copied to clipboard
fun JsonObject.byLongList(key: String? = null, default: List<Long>): JsonDelegateProperty<List<Long>>
Content copied to clipboard
byModel
Link copied to clipboard
fun <T : JsonModel> JsonObject.byModel(key: String? = null, block: (JsonObject) -> T): JsonObjectProperty<T>
Content copied to clipboard
byModelList
Link copied to clipboard
fun <T : JsonModel> JsonObject.byModelList(key: String? = null, block: (JsonObject) -> T): JsonArrayProperty<T>
Content copied to clipboard
byModelListOrDefault
Link copied to clipboard
fun <T : JsonModel> JsonObject.byModelListOrDefault(key: String? = null, block: (JsonObject) -> T): JsonArrayProperty<T>
Content copied to clipboard
byModelOrDefault
Link copied to clipboard
fun <T : JsonModel> JsonObject.byModelOrDefault(key: String? = null, block: (JsonObject) -> T): JsonObjectProperty<T>
Content copied to clipboard
byNullableBoolean
Link copied to clipboard
fun JsonObject?.byNullableBoolean(key: String): JsonDelegateProperty<Boolean?>
Content copied to clipboard
fun JsonObject?.byNullableBoolean(key: String? = null, default: Boolean?): JsonDelegateProperty<Boolean?>
Content copied to clipboard
fun JsonObject?.byNullableBoolean(key: String? = null, default: JsonObjectDefaultSelector<Boolean?>): JsonDelegateProperty<Boolean?>
Content copied to clipboard
byNullableBooleanList
Link copied to clipboard
fun JsonObject?.byNullableBooleanList(key: String): JsonDelegateProperty<List<Boolean?>>
Content copied to clipboard
fun JsonObject?.byNullableBooleanList(key: String? = null, default: JsonArrayDefaultSelector<Boolean?>): JsonDelegateProperty<List<Boolean?>>
Content copied to clipboard
fun JsonObject?.byNullableBooleanList(key: String? = null, default: List<Boolean?>): JsonDelegateProperty<List<Boolean?>>
Content copied to clipboard
byNullableChar
Link copied to clipboard
fun JsonObject?.byNullableChar(key: String? = null, default: Char?): JsonDelegateProperty<Char?>
Content copied to clipboard
fun JsonObject?.byNullableChar(key: String? = null, default: JsonObjectDefaultSelector<Char?>): JsonDelegateProperty<Char?>
Content copied to clipboard
byNullableCharList
Link copied to clipboard
fun JsonObject?.byNullableCharList(key: String): JsonDelegateProperty<List<Char?>>
Content copied to clipboard
fun JsonObject?.byNullableCharList(key: String? = null, default: JsonArrayDefaultSelector<Char?>): JsonDelegateProperty<List<Char?>>
Content copied to clipboard
fun JsonObject?.byNullableCharList(key: String? = null, default: List<Char?>): JsonDelegateProperty<List<Char?>>
Content copied to clipboard
byNullableDouble
Link copied to clipboard
fun JsonObject?.byNullableDouble(key: String): JsonDelegateProperty<Double?>
Content copied to clipboard
fun JsonObject?.byNullableDouble(key: String? = null, default: Double?): JsonDelegateProperty<Double?>
Content copied to clipboard
fun JsonObject?.byNullableDouble(key: String? = null, default: JsonObjectDefaultSelector<Double?>): JsonDelegateProperty<Double?>
Content copied to clipboard
byNullableDoubleList
Link copied to clipboard
fun JsonObject?.byNullableDoubleList(key: String): JsonDelegateProperty<List<Double?>>
Content copied to clipboard
fun JsonObject?.byNullableDoubleList(key: String? = null, default: JsonArrayDefaultSelector<Double?>): JsonDelegateProperty<List<Double?>>
Content copied to clipboard
fun JsonObject?.byNullableDoubleList(key: String? = null, default: List<Double?>): JsonDelegateProperty<List<Double?>>
Content copied to clipboard
byNullableEnum
Link copied to clipboard
inline fun <T : Any, E : Enum<E>, JsonEnum<T>> JsonObject?.byNullableEnum(key: String? = null, noinline default: JsonObjectDefaultSelector<E?> = ::jsonObjectDefaultSelectorWithNull): JsonObjectProperty<E?>
Content copied to clipboard
byNullableEnumList
Link copied to clipboard
inline fun <T : Any, E : Enum<E>, JsonEnum<T>> JsonObject?.byNullableEnumList(key: String? = null, noinline default: JsonArrayDefaultSelector<E?> = ::jsonArrayDefaultSelector): JsonArrayProperty<E?>
Content copied to clipboard
byNullableFloat
Link copied to clipboard
fun JsonObject?.byNullableFloat(key: String): JsonDelegateProperty<Float?>
Content copied to clipboard
fun JsonObject?.byNullableFloat(key: String? = null, default: Float?): JsonDelegateProperty<Float?>
Content copied to clipboard
fun JsonObject?.byNullableFloat(key: String? = null, default: JsonObjectDefaultSelector<Float?>): JsonDelegateProperty<Float?>
Content copied to clipboard
byNullableFloatList
Link copied to clipboard
fun JsonObject?.byNullableFloatList(key: String): JsonDelegateProperty<List<Float?>>
Content copied to clipboard
fun JsonObject?.byNullableFloatList(key: String? = null, default: JsonArrayDefaultSelector<Float?>): JsonDelegateProperty<List<Float?>>
Content copied to clipboard
fun JsonObject?.byNullableFloatList(key: String? = null, default: List<Float?>): JsonDelegateProperty<List<Float?>>
Content copied to clipboard
byNullableInt
Link copied to clipboard
fun JsonObject?.byNullableInt(key: String? = null, default: JsonObjectDefaultSelector<Int?>): JsonDelegateProperty<Int?>
Content copied to clipboard
fun JsonObject?.byNullableInt(key: String? = null, default: Int?): JsonDelegateProperty<Int?>
Content copied to clipboard
byNullableIntList
Link copied to clipboard
fun JsonObject?.byNullableIntList(key: String): JsonDelegateProperty<List<Int?>>
Content copied to clipboard
fun JsonObject?.byNullableIntList(key: String? = null, default: JsonArrayDefaultSelector<Int?>): JsonDelegateProperty<List<Int?>>
Content copied to clipboard
fun JsonObject?.byNullableIntList(key: String? = null, default: List<Int?>): JsonDelegateProperty<List<Int?>>
Content copied to clipboard
byNullableJsonArray
Link copied to clipboard
fun JsonObject?.byNullableJsonArray(key: String): JsonDelegateProperty<JsonArray?>
Content copied to clipboard
fun JsonObject?.byNullableJsonArray(key: String? = null, default: JsonObjectDefaultSelector<JsonArray?>): JsonDelegateProperty<JsonArray?>
Content copied to clipboard
fun JsonObject?.byNullableJsonArray(key: String? = null, default: JsonArray?): JsonDelegateProperty<JsonArray?>
Content copied to clipboard
byNullableJsonArrayList
Link copied to clipboard
fun JsonObject?.byNullableJsonArrayList(key: String): JsonDelegateProperty<List<JsonArray?>>
Content copied to clipboard
fun JsonObject?.byNullableJsonArrayList(key: String? = null, default: JsonArrayDefaultSelector<JsonArray?>): JsonDelegateProperty<List<JsonArray?>>
Content copied to clipboard
fun JsonObject?.byNullableJsonArrayList(key: String? = null, default: List<JsonArray?>): JsonDelegateProperty<List<JsonArray?>>
Content copied to clipboard
byNullableJsonElement
Link copied to clipboard
fun JsonObject?.byNullableJsonElement(key: String): JsonDelegateProperty<JsonElement?>
Content copied to clipboard
fun JsonObject?.byNullableJsonElement(key: String? = null, default: JsonObjectDefaultSelector<JsonElement?>): JsonDelegateProperty<JsonElement?>
Content copied to clipboard
fun JsonObject?.byNullableJsonElement(key: String? = null, default: JsonElement?): JsonDelegateProperty<JsonElement?>
Content copied to clipboard
byNullableJsonElementList
Link copied to clipboard
fun JsonObject?.byNullableJsonElementList(key: String): JsonDelegateProperty<List<JsonElement?>>
Content copied to clipboard
fun JsonObject?.byNullableJsonElementList(key: String? = null, default: JsonArrayDefaultSelector<JsonElement?>): JsonDelegateProperty<List<JsonElement?>>
Content copied to clipboard
fun JsonObject?.byNullableJsonElementList(key: String? = null, default: List<JsonElement?>): JsonDelegateProperty<List<JsonElement?>>
Content copied to clipboard
byNullableJsonObject
Link copied to clipboard
fun JsonObject?.byNullableJsonObject(key: String): JsonDelegateProperty<JsonObject?>
Content copied to clipboard
fun JsonObject?.byNullableJsonObject(key: String? = null, default: JsonObjectDefaultSelector<JsonObject?>): JsonDelegateProperty<JsonObject?>
Content copied to clipboard
fun JsonObject?.byNullableJsonObject(key: String? = null, default: JsonObject?): JsonDelegateProperty<JsonObject?>
Content copied to clipboard
byNullableJsonObjectList
Link copied to clipboard
fun JsonObject?.byNullableJsonObjectList(key: String): JsonDelegateProperty<List<JsonObject?>>
Content copied to clipboard
fun JsonObject?.byNullableJsonObjectList(key: String? = null, default: JsonArrayDefaultSelector<JsonObject?>): JsonDelegateProperty<List<JsonObject?>>
Content copied to clipboard
fun JsonObject?.byNullableJsonObjectList(key: String? = null, default: List<JsonObject?>): JsonDelegateProperty<List<JsonObject?>>
Content copied to clipboard
byNullableJsonPrimitive
Link copied to clipboard
fun JsonObject?.byNullableJsonPrimitive(key: String): JsonDelegateProperty<JsonPrimitive?>
Content copied to clipboard
fun JsonObject?.byNullableJsonPrimitive(key: String? = null, default: JsonObjectDefaultSelector<JsonPrimitive?>): JsonDelegateProperty<JsonPrimitive?>
Content copied to clipboard
fun JsonObject?.byNullableJsonPrimitive(key: String? = null, default: JsonPrimitive?): JsonDelegateProperty<JsonPrimitive?>
Content copied to clipboard
byNullableJsonPrimitiveList
Link copied to clipboard
fun JsonObject?.byNullableJsonPrimitiveList(key: String): JsonDelegateProperty<List<JsonPrimitive?>>
Content copied to clipboard
fun JsonObject?.byNullableJsonPrimitiveList(key: String? = null, default: JsonArrayDefaultSelector<JsonPrimitive?>): JsonDelegateProperty<List<JsonPrimitive?>>
Content copied to clipboard
fun JsonObject?.byNullableJsonPrimitiveList(key: String? = null, default: List<JsonPrimitive?>): JsonDelegateProperty<List<JsonPrimitive?>>
Content copied to clipboard
byNullableLambda
Link copied to clipboard
fun <T> JsonObject?.byNullableLambda(key: String? = null, converter: JsonElementConverter<T?>): JsonObjectProperty<T?>
Content copied to clipboard
fun <T> JsonObject?.byNullableLambda(key: String? = null, default: T?, converter: JsonElementConverter<T?>): JsonObjectProperty<T?>
Content copied to clipboard
fun <T> JsonObject?.byNullableLambda(key: String? = null, default: JsonObjectDefaultSelector<T?>, converter: JsonElementConverter<T?>): JsonObjectProperty<T?>
Content copied to clipboard
byNullableLambdaList
Link copied to clipboard
fun <T> JsonObject?.byNullableLambdaList(key: String? = null, converter: JsonElementConverter<T?>): JsonArrayProperty<T?>
Content copied to clipboard
fun <T> JsonObject?.byNullableLambdaList(key: String? = null, default: JsonArrayDefaultSelector<T?>, converter: JsonElementConverter<T?>): JsonArrayProperty<T?>
Content copied to clipboard
fun <T> JsonObject?.byNullableLambdaList(key: String? = null, default: List<T?>, converter: JsonElementConverter<T?>): JsonArrayProperty<T?>
Content copied to clipboard
byNullableLong
Link copied to clipboard
fun JsonObject?.byNullableLong(key: String? = null, default: JsonObjectDefaultSelector<Long?>): JsonDelegateProperty<Long?>
Content copied to clipboard
fun JsonObject?.byNullableLong(key: String? = null, default: Long?): JsonDelegateProperty<Long?>
Content copied to clipboard
byNullableLongList
Link copied to clipboard
fun JsonObject?.byNullableLongList(key: String): JsonDelegateProperty<List<Long?>>
Content copied to clipboard
fun JsonObject?.byNullableLongList(key: String? = null, default: JsonArrayDefaultSelector<Long?>): JsonDelegateProperty<List<Long?>>
Content copied to clipboard
fun JsonObject?.byNullableLongList(key: String? = null, default: List<Long?>): JsonDelegateProperty<List<Long?>>
Content copied to clipboard
byNullableModel
Link copied to clipboard
fun <T : JsonModel> JsonObject?.byNullableModel(key: String? = null, block: (JsonObject) -> T): JsonObjectProperty<T?>
Content copied to clipboard
byNullableModelList
Link copied to clipboard
fun <T : JsonModel> JsonObject?.byNullableModelList(key: String? = null, block: (JsonObject) -> T): JsonArrayProperty<T?>
Content copied to clipboard
byNullableString
Link copied to clipboard
fun JsonObject?.byNullableString(key: String): JsonDelegateProperty<String?>
Content copied to clipboard
fun JsonObject?.byNullableString(key: String? = null, default: JsonObjectDefaultSelector<String?>): JsonDelegateProperty<String?>
Content copied to clipboard
fun JsonObject?.byNullableString(key: String? = null, default: String?): JsonDelegateProperty<String?>
Content copied to clipboard
byNullableStringList
Link copied to clipboard
fun JsonObject?.byNullableStringList(key: String): JsonDelegateProperty<List<String?>>
Content copied to clipboard
fun JsonObject?.byNullableStringList(key: String? = null, default: JsonArrayDefaultSelector<String?>): JsonDelegateProperty<List<String?>>
Content copied to clipboard
fun JsonObject?.byNullableStringList(key: String? = null, default: List<String?>): JsonDelegateProperty<List<String?>>
Content copied to clipboard
byString
Link copied to clipboard
fun JsonObject.byString(key: String? = null, default: JsonObjectDefaultSelector<String>): JsonDelegateProperty<String>
Content copied to clipboard
fun JsonObject.byString(key: String? = null, default: String): JsonDelegateProperty<String>
Content copied to clipboard
byStringList
Link copied to clipboard
fun JsonObject.byStringList(key: String): JsonDelegateProperty<List<String>>
Content copied to clipboard
fun JsonObject.byStringList(key: String? = null, default: JsonArrayDefaultSelector<String>): JsonDelegateProperty<List<String>>
Content copied to clipboard
fun JsonObject.byStringList(key: String? = null, default: List<String>): JsonDelegateProperty<List<String>>
Content copied to clipboard
doubleList
Link copied to clipboard
fun JsonModel.doubleList(key: String): JsonDelegateProperty<List<Double>>
Content copied to clipboard
fun JsonModel.doubleList(key: String? = null, default: JsonArrayDefaultSelector<Double>): JsonDelegateProperty<List<Double>>
Content copied to clipboard
fun JsonModel.doubleList(key: String? = null, default: List<Double>): JsonDelegateProperty<List<Double>>
Content copied to clipboard
doubleValue
Link copied to clipboard
doubleValueOrNull
Link copied to clipboard
floatValue
Link copied to clipboard
floatValueOrNull
Link copied to clipboard
intValueOrNull
Link copied to clipboard
jsonArrayList
Link copied to clipboard
fun JsonModel.jsonArrayList(key: String): JsonDelegateProperty<List<JsonArray>>
Content copied to clipboard
fun JsonModel.jsonArrayList(key: String? = null, default: JsonArrayDefaultSelector<JsonArray>): JsonDelegateProperty<List<JsonArray>>
Content copied to clipboard
fun JsonModel.jsonArrayList(key: String? = null, default: List<JsonArray>): JsonDelegateProperty<List<JsonArray>>
Content copied to clipboard
jsonArrayProperty
Link copied to clipboard
fun <T : Any> JsonModel.jsonArrayProperty(key: String? = null, default: JsonArrayDefaultSelector<T> = ::jsonArrayDefaultSelector, converter: JsonElementConverter<T>): JsonArrayProperty<T>
Content copied to clipboard
inline fun <T : Any> JsonObject.jsonArrayProperty(key: String? = null, crossinline default: JsonArrayDefaultSelector<T> = ::jsonArrayDefaultSelector, crossinline converter: JsonElementConverter<T>): JsonArrayProperty<T>
Content copied to clipboard
jsonElement
Link copied to clipboard
fun JsonModel.jsonElement(key: String): JsonDelegateProperty<JsonElement>
Content copied to clipboard
fun JsonModel.jsonElement(key: String? = null, default: JsonObjectDefaultSelector<JsonElement>): JsonDelegateProperty<JsonElement>
Content copied to clipboard
fun JsonModel.jsonElement(key: String? = null, default: JsonElement): JsonDelegateProperty<JsonElement>
Content copied to clipboard
jsonElementList
Link copied to clipboard
fun JsonModel.jsonElementList(key: String): JsonDelegateProperty<List<JsonElement>>
Content copied to clipboard
fun JsonModel.jsonElementList(key: String? = null, default: JsonArrayDefaultSelector<JsonElement>): JsonDelegateProperty<List<JsonElement>>
Content copied to clipboard
fun JsonModel.jsonElementList(key: String? = null, default: List<JsonElement>): JsonDelegateProperty<List<JsonElement>>
Content copied to clipboard
jsonObject
Link copied to clipboard
fun JsonModel.jsonObject(key: String? = null, default: JsonObjectDefaultSelector<JsonObject>): JsonDelegateProperty<JsonObject>
Content copied to clipboard
fun JsonModel.jsonObject(key: String? = null, default: JsonObject): JsonDelegateProperty<JsonObject>
Content copied to clipboard
jsonObjectList
Link copied to clipboard
fun JsonModel.jsonObjectList(key: String): JsonDelegateProperty<List<JsonObject>>
Content copied to clipboard
fun JsonModel.jsonObjectList(key: String? = null, default: JsonArrayDefaultSelector<JsonObject>): JsonDelegateProperty<List<JsonObject>>
Content copied to clipboard
fun JsonModel.jsonObjectList(key: String? = null, default: List<JsonObject>): JsonDelegateProperty<List<JsonObject>>
Content copied to clipboard
jsonObjectProperty
Link copied to clipboard
fun <T : Any> JsonModel.jsonObjectProperty(key: String? = null, default: JsonObjectDefaultSelector<T> = ::jsonObjectDefaultSelector, converter: JsonElementConverter<T>): JsonObjectProperty<T>
Content copied to clipboard
fun <T : Any> JsonObject.jsonObjectProperty(key: String? = null, default: JsonObjectDefaultSelector<T> = ::jsonObjectDefaultSelector, converter: JsonElementConverter<T>): JsonObjectProperty<T>
Content copied to clipboard
jsonPrimitive
Link copied to clipboard
fun JsonModel.jsonPrimitive(key: String): JsonDelegateProperty<JsonPrimitive>
Content copied to clipboard
fun JsonModel.jsonPrimitive(key: String? = null, default: JsonObjectDefaultSelector<JsonPrimitive>): JsonDelegateProperty<JsonPrimitive>
Content copied to clipboard
fun JsonModel.jsonPrimitive(key: String? = null, default: JsonPrimitive): JsonDelegateProperty<JsonPrimitive>
Content copied to clipboard
jsonPrimitiveList
Link copied to clipboard
fun JsonModel.jsonPrimitiveList(key: String): JsonDelegateProperty<List<JsonPrimitive>>
Content copied to clipboard
fun JsonModel.jsonPrimitiveList(key: String? = null, default: JsonArrayDefaultSelector<JsonPrimitive>): JsonDelegateProperty<List<JsonPrimitive>>
Content copied to clipboard
fun JsonModel.jsonPrimitiveList(key: String? = null, default: List<JsonPrimitive>): JsonDelegateProperty<List<JsonPrimitive>>
Content copied to clipboard
lambda
Link copied to clipboard
lambdaList
Link copied to clipboard
fun <T : Any> JsonModel.lambdaList(key: String? = null, converter: JsonElementConverter<T>): JsonArrayProperty<T>
Content copied to clipboard
fun <T : Any> JsonModel.lambdaList(key: String? = null, default: JsonArrayDefaultSelector<T>, converter: JsonElementConverter<T>): JsonArrayProperty<T>
Content copied to clipboard
fun <T : Any> JsonModel.lambdaList(key: String? = null, default: List<T>, converter: JsonElementConverter<T>): JsonArrayProperty<T>
Content copied to clipboard
longValueOrNull
Link copied to clipboard
model
Link copied to clipboard
fun <T : JsonModel> JsonModel.model(key: String? = null, block: (JsonObject) -> T): JsonObjectProperty<T>
Content copied to clipboard
modelList
Link copied to clipboard
fun <T : JsonModel> JsonModel.modelList(key: String? = null, block: (JsonObject) -> T): JsonArrayProperty<T>
Content copied to clipboard
modelListOrDefault
Link copied to clipboard
fun <T : JsonModel> JsonModel.modelListOrDefault(key: String? = null, block: (JsonObject) -> T): JsonArrayProperty<T>
Content copied to clipboard
modelListValue
Link copied to clipboard
modelListValueOrNull
Link copied to clipboard
modelOrDefault
Link copied to clipboard
fun <T : JsonModel> JsonModel.modelOrDefault(key: String? = null, block: (JsonObject) -> T): JsonObjectProperty<T>
Content copied to clipboard
modelValue
Link copied to clipboard
modelValueOrNull
Link copied to clipboard
nullableBoolean
Link copied to clipboard
fun JsonModel?.nullableBoolean(key: String): JsonDelegateProperty<Boolean?>
Content copied to clipboard
fun JsonModel?.nullableBoolean(key: String? = null, default: Boolean?): JsonDelegateProperty<Boolean?>
Content copied to clipboard
fun JsonModel?.nullableBoolean(key: String? = null, default: JsonObjectDefaultSelector<Boolean?>): JsonDelegateProperty<Boolean?>
Content copied to clipboard
nullableBooleanList
Link copied to clipboard
fun JsonModel?.nullableBooleanList(key: String): JsonDelegateProperty<List<Boolean?>>
Content copied to clipboard
fun JsonModel?.nullableBooleanList(key: String? = null, default: JsonArrayDefaultSelector<Boolean?>): JsonDelegateProperty<List<Boolean?>>
Content copied to clipboard
fun JsonModel?.nullableBooleanList(key: String? = null, default: List<Boolean?>): JsonDelegateProperty<List<Boolean?>>
Content copied to clipboard
nullableChar
Link copied to clipboard
fun JsonModel?.nullableChar(key: String? = null, default: Char?): JsonDelegateProperty<Char?>
Content copied to clipboard
fun JsonModel?.nullableChar(key: String? = null, default: JsonObjectDefaultSelector<Char?>): JsonDelegateProperty<Char?>
Content copied to clipboard
nullableCharList
Link copied to clipboard
fun JsonModel?.nullableCharList(key: String): JsonDelegateProperty<List<Char?>>
Content copied to clipboard
fun JsonModel?.nullableCharList(key: String? = null, default: JsonArrayDefaultSelector<Char?>): JsonDelegateProperty<List<Char?>>
Content copied to clipboard
fun JsonModel?.nullableCharList(key: String? = null, default: List<Char?>): JsonDelegateProperty<List<Char?>>
Content copied to clipboard
nullableDouble
Link copied to clipboard
fun JsonModel?.nullableDouble(key: String): JsonDelegateProperty<Double?>
Content copied to clipboard
fun JsonModel?.nullableDouble(key: String? = null, default: Double?): JsonDelegateProperty<Double?>
Content copied to clipboard
fun JsonModel?.nullableDouble(key: String? = null, default: JsonObjectDefaultSelector<Double?>): JsonDelegateProperty<Double?>
Content copied to clipboard
nullableDoubleList
Link copied to clipboard
fun JsonModel?.nullableDoubleList(key: String): JsonDelegateProperty<List<Double?>>
Content copied to clipboard
fun JsonModel?.nullableDoubleList(key: String? = null, default: JsonArrayDefaultSelector<Double?>): JsonDelegateProperty<List<Double?>>
Content copied to clipboard
fun JsonModel?.nullableDoubleList(key: String? = null, default: List<Double?>): JsonDelegateProperty<List<Double?>>
Content copied to clipboard
nullableEnum
Link copied to clipboard
nullableEnumList
Link copied to clipboard
nullableFloat
Link copied to clipboard
fun JsonModel?.nullableFloat(key: String? = null, default: Float?): JsonDelegateProperty<Float?>
Content copied to clipboard
fun JsonModel?.nullableFloat(key: String? = null, default: JsonObjectDefaultSelector<Float?>): JsonDelegateProperty<Float?>
Content copied to clipboard
nullableFloatList
Link copied to clipboard
fun JsonModel?.nullableFloatList(key: String): JsonDelegateProperty<List<Float?>>
Content copied to clipboard
fun JsonModel?.nullableFloatList(key: String? = null, default: JsonArrayDefaultSelector<Float?>): JsonDelegateProperty<List<Float?>>
Content copied to clipboard
fun JsonModel?.nullableFloatList(key: String? = null, default: List<Float?>): JsonDelegateProperty<List<Float?>>
Content copied to clipboard
nullableInt
Link copied to clipboard
fun JsonModel?.nullableInt(key: String? = null, default: JsonObjectDefaultSelector<Int?>): JsonDelegateProperty<Int?>
Content copied to clipboard
fun JsonModel?.nullableInt(key: String? = null, default: Int?): JsonDelegateProperty<Int?>
Content copied to clipboard
nullableIntList
Link copied to clipboard
fun JsonModel?.nullableIntList(key: String): JsonDelegateProperty<List<Int?>>
Content copied to clipboard
fun JsonModel?.nullableIntList(key: String? = null, default: JsonArrayDefaultSelector<Int?>): JsonDelegateProperty<List<Int?>>
Content copied to clipboard
fun JsonModel?.nullableIntList(key: String? = null, default: List<Int?>): JsonDelegateProperty<List<Int?>>
Content copied to clipboard
nullableJsonArray
Link copied to clipboard
fun JsonModel?.nullableJsonArray(key: String): JsonDelegateProperty<JsonArray?>
Content copied to clipboard
fun JsonModel?.nullableJsonArray(key: String? = null, default: JsonObjectDefaultSelector<JsonArray?>): JsonDelegateProperty<JsonArray?>
Content copied to clipboard
fun JsonModel?.nullableJsonArray(key: String? = null, default: JsonArray?): JsonDelegateProperty<JsonArray?>
Content copied to clipboard
nullableJsonArrayList
Link copied to clipboard
fun JsonModel?.nullableJsonArrayList(key: String): JsonDelegateProperty<List<JsonArray?>>
Content copied to clipboard
fun JsonModel?.nullableJsonArrayList(key: String? = null, default: JsonArrayDefaultSelector<JsonArray?>): JsonDelegateProperty<List<JsonArray?>>
Content copied to clipboard
fun JsonModel?.nullableJsonArrayList(key: String? = null, default: List<JsonArray?>): JsonDelegateProperty<List<JsonArray?>>
Content copied to clipboard
nullableJsonArrayProperty
Link copied to clipboard
fun <T> JsonModel?.nullableJsonArrayProperty(key: String? = null, default: JsonArrayDefaultSelector<T?> = ::jsonArrayDefaultSelector, converter: JsonElementConverter<T?>): JsonArrayProperty<T?>
Content copied to clipboard
fun <T> JsonObject?.nullableJsonArrayProperty(key: String? = null, default: JsonArrayDefaultSelector<T?> = ::jsonArrayDefaultSelector, converter: JsonElementConverter<T?>): JsonArrayProperty<T?>
Content copied to clipboard
nullableJsonElement
Link copied to clipboard
fun JsonModel?.nullableJsonElement(key: String): JsonDelegateProperty<JsonElement?>
Content copied to clipboard
fun JsonModel?.nullableJsonElement(key: String? = null, default: JsonObjectDefaultSelector<JsonElement?>): JsonDelegateProperty<JsonElement?>
Content copied to clipboard
fun JsonModel?.nullableJsonElement(key: String? = null, default: JsonElement?): JsonDelegateProperty<JsonElement?>
Content copied to clipboard
nullableJsonElementList
Link copied to clipboard
fun JsonModel?.nullableJsonElementList(key: String): JsonDelegateProperty<List<JsonElement?>>
Content copied to clipboard
fun JsonModel?.nullableJsonElementList(key: String? = null, default: JsonArrayDefaultSelector<JsonElement?>): JsonDelegateProperty<List<JsonElement?>>
Content copied to clipboard
fun JsonModel?.nullableJsonElementList(key: String? = null, default: List<JsonElement?>): JsonDelegateProperty<List<JsonElement?>>
Content copied to clipboard
nullableJsonObject
Link copied to clipboard
fun JsonModel?.nullableJsonObject(key: String): JsonDelegateProperty<JsonObject?>
Content copied to clipboard
fun JsonModel?.nullableJsonObject(key: String? = null, default: JsonObjectDefaultSelector<JsonObject?>): JsonDelegateProperty<JsonObject?>
Content copied to clipboard
fun JsonModel?.nullableJsonObject(key: String? = null, default: JsonObject?): JsonDelegateProperty<JsonObject?>
Content copied to clipboard
nullableJsonObjectList
Link copied to clipboard
fun JsonModel?.nullableJsonObjectList(key: String): JsonDelegateProperty<List<JsonObject?>>
Content copied to clipboard
fun JsonModel?.nullableJsonObjectList(key: String? = null, default: JsonArrayDefaultSelector<JsonObject?>): JsonDelegateProperty<List<JsonObject?>>
Content copied to clipboard
fun JsonModel?.nullableJsonObjectList(key: String? = null, default: List<JsonObject?>): JsonDelegateProperty<List<JsonObject?>>
Content copied to clipboard
nullableJsonObjectProperty
Link copied to clipboard
fun <T> JsonModel?.nullableJsonObjectProperty(key: String? = null, default: JsonObjectDefaultSelector<T?> = ::jsonObjectDefaultSelectorWithNull, converter: JsonElementConverter<T?>): JsonObjectProperty<T?>
Content copied to clipboard
fun <T> JsonObject?.nullableJsonObjectProperty(key: String? = null, default: JsonObjectDefaultSelector<T?> = ::jsonObjectDefaultSelectorWithNull, converter: JsonElementConverter<T?>): JsonObjectProperty<T?>
Content copied to clipboard
nullableJsonPrimitive
Link copied to clipboard
fun JsonModel?.nullableJsonPrimitive(key: String): JsonDelegateProperty<JsonPrimitive?>
Content copied to clipboard
fun JsonModel?.nullableJsonPrimitive(key: String? = null, default: JsonObjectDefaultSelector<JsonPrimitive?>): JsonDelegateProperty<JsonPrimitive?>
Content copied to clipboard
fun JsonModel?.nullableJsonPrimitive(key: String? = null, default: JsonPrimitive?): JsonDelegateProperty<JsonPrimitive?>
Content copied to clipboard
nullableJsonPrimitiveList
Link copied to clipboard
fun JsonModel?.nullableJsonPrimitiveList(key: String): JsonDelegateProperty<List<JsonPrimitive?>>
Content copied to clipboard
fun JsonModel?.nullableJsonPrimitiveList(key: String? = null, default: JsonArrayDefaultSelector<JsonPrimitive?>): JsonDelegateProperty<List<JsonPrimitive?>>
Content copied to clipboard
fun JsonModel?.nullableJsonPrimitiveList(key: String? = null, default: List<JsonPrimitive?>): JsonDelegateProperty<List<JsonPrimitive?>>
Content copied to clipboard
nullableLambda
Link copied to clipboard
fun <T> JsonModel?.nullableLambda(key: String? = null, converter: JsonElementConverter<T?>): JsonObjectProperty<T?>
Content copied to clipboard
fun <T> JsonModel?.nullableLambda(key: String? = null, default: T?, converter: JsonElementConverter<T?>): JsonObjectProperty<T?>
Content copied to clipboard
fun <T> JsonModel?.nullableLambda(key: String? = null, default: JsonObjectDefaultSelector<T?>, converter: JsonElementConverter<T?>): JsonObjectProperty<T?>
Content copied to clipboard
nullableLambdaList
Link copied to clipboard
fun <T> JsonModel?.nullableLambdaList(key: String? = null, converter: JsonElementConverter<T?>): JsonArrayProperty<T?>
Content copied to clipboard
fun <T> JsonModel?.nullableLambdaList(key: String? = null, default: JsonArrayDefaultSelector<T?>, converter: JsonElementConverter<T?>): JsonArrayProperty<T?>
Content copied to clipboard
fun <T> JsonModel?.nullableLambdaList(key: String? = null, default: List<T?>, converter: JsonElementConverter<T?>): JsonArrayProperty<T?>
Content copied to clipboard
nullableLong
Link copied to clipboard
fun JsonModel?.nullableLong(key: String? = null, default: JsonObjectDefaultSelector<Long?>): JsonDelegateProperty<Long?>
Content copied to clipboard
fun JsonModel?.nullableLong(key: String? = null, default: Long?): JsonDelegateProperty<Long?>
Content copied to clipboard
nullableLongList
Link copied to clipboard
fun JsonModel?.nullableLongList(key: String): JsonDelegateProperty<List<Long?>>
Content copied to clipboard
fun JsonModel?.nullableLongList(key: String? = null, default: JsonArrayDefaultSelector<Long?>): JsonDelegateProperty<List<Long?>>
Content copied to clipboard
fun JsonModel?.nullableLongList(key: String? = null, default: List<Long?>): JsonDelegateProperty<List<Long?>>
Content copied to clipboard
nullableModel
Link copied to clipboard
fun <T : JsonModel> JsonModel?.nullableModel(key: String? = null, block: (JsonObject) -> T): JsonObjectProperty<T?>
Content copied to clipboard
nullableModelList
Link copied to clipboard
fun <T : JsonModel> JsonModel?.nullableModelList(key: String? = null, block: (JsonObject) -> T): JsonArrayProperty<T?>
Content copied to clipboard
nullableString
Link copied to clipboard
fun JsonModel?.nullableString(key: String): JsonDelegateProperty<String?>
Content copied to clipboard
fun JsonModel?.nullableString(key: String? = null, default: JsonObjectDefaultSelector<String?>): JsonDelegateProperty<String?>
Content copied to clipboard
fun JsonModel?.nullableString(key: String? = null, default: String?): JsonDelegateProperty<String?>
Content copied to clipboard
nullableStringList
Link copied to clipboard
fun JsonModel?.nullableStringList(key: String): JsonDelegateProperty<List<String?>>
Content copied to clipboard
fun JsonModel?.nullableStringList(key: String? = null, default: JsonArrayDefaultSelector<String?>): JsonDelegateProperty<List<String?>>
Content copied to clipboard
fun JsonModel?.nullableStringList(key: String? = null, default: List<String?>): JsonDelegateProperty<List<String?>>
Content copied to clipboard
stringList
Link copied to clipboard
fun JsonModel.stringList(key: String): JsonDelegateProperty<List<String>>
Content copied to clipboard
fun JsonModel.stringList(key: String? = null, default: JsonArrayDefaultSelector<String>): JsonDelegateProperty<List<String>>
Content copied to clipboard
fun JsonModel.stringList(key: String? = null, default: List<String>): JsonDelegateProperty<List<String>>
Content copied to clipboard
stringValue
Link copied to clipboard
stringValueOrNull
Link copied to clipboard
Properties
boolean
Link copied to clipboard
booleanList
Link copied to clipboard
byBoolean
Link copied to clipboard
byBooleanList
Link copied to clipboard
byChar
Link copied to clipboard
byCharList
Link copied to clipboard
byDouble
Link copied to clipboard
byDoubleList
Link copied to clipboard
byFloat
Link copied to clipboard
byFloatList
Link copied to clipboard
byInt
Link copied to clipboard
byIntList
Link copied to clipboard
byJsonArray
Link copied to clipboard
byJsonArrayList
Link copied to clipboard
byJsonElement
Link copied to clipboard
byJsonElementList
Link copied to clipboard
val JsonObject.byJsonElementList: JsonDelegateProperty<List<JsonElement>>
Content copied to clipboard
byJsonObject
Link copied to clipboard
byJsonObjectList
Link copied to clipboard
byJsonPrimitive
Link copied to clipboard
byJsonPrimitiveList
Link copied to clipboard
val JsonObject.byJsonPrimitiveList: JsonDelegateProperty<List<JsonPrimitive>>
Content copied to clipboard
byLong
Link copied to clipboard
byLongList
Link copied to clipboard
byNullableBoolean
Link copied to clipboard
byNullableBooleanList
Link copied to clipboard
val JsonObject?.byNullableBooleanList: JsonDelegateProperty<List<Boolean?>>
Content copied to clipboard
byNullableChar
Link copied to clipboard
byNullableCharList
Link copied to clipboard
byNullableDouble
Link copied to clipboard
byNullableDoubleList
Link copied to clipboard
val JsonObject?.byNullableDoubleList: JsonDelegateProperty<List<Double?>>
Content copied to clipboard
byNullableFloat
Link copied to clipboard
byNullableFloatList
Link copied to clipboard
byNullableInt
Link copied to clipboard
byNullableIntList
Link copied to clipboard
byNullableJsonArray
Link copied to clipboard
byNullableJsonArrayList
Link copied to clipboard
val JsonObject?.byNullableJsonArrayList: JsonDelegateProperty<List<JsonArray?>>
Content copied to clipboard
byNullableJsonElement
Link copied to clipboard
val JsonObject?.byNullableJsonElement: JsonDelegateProperty<JsonElement?>
Content copied to clipboard
byNullableJsonElementList
Link copied to clipboard
val JsonObject?.byNullableJsonElementList: JsonDelegateProperty<List<JsonElement?>>
Content copied to clipboard
byNullableJsonObject
Link copied to clipboard
byNullableJsonObjectList
Link copied to clipboard
val JsonObject?.byNullableJsonObjectList: JsonDelegateProperty<List<JsonObject?>>
Content copied to clipboard
byNullableJsonPrimitive
Link copied to clipboard
val JsonObject?.byNullableJsonPrimitive: JsonDelegateProperty<JsonPrimitive?>
Content copied to clipboard
byNullableJsonPrimitiveList
Link copied to clipboard
val JsonObject?.byNullableJsonPrimitiveList: JsonDelegateProperty<List<JsonPrimitive?>>
Content copied to clipboard
byNullableLong
Link copied to clipboard
byNullableLongList
Link copied to clipboard
byNullableString
Link copied to clipboard
byNullableStringList
Link copied to clipboard
val JsonObject?.byNullableStringList: JsonDelegateProperty<List<String?>>
Content copied to clipboard
byString
Link copied to clipboard
byStringList
Link copied to clipboard
char
Link copied to clipboard
double
Link copied to clipboard
doubleList
Link copied to clipboard
float
Link copied to clipboard
int
Link copied to clipboard
jsonArray
Link copied to clipboard
jsonArrayList
Link copied to clipboard
jsonElement
Link copied to clipboard
jsonElementList
Link copied to clipboard
jsonObject
Link copied to clipboard
jsonObjectList
Link copied to clipboard
jsonPrimitive
Link copied to clipboard
jsonPrimitiveList
Link copied to clipboard
val JsonModel.jsonPrimitiveList: JsonDelegateProperty<List<JsonPrimitive>>
Content copied to clipboard
long
Link copied to clipboard
nullableBoolean
Link copied to clipboard
nullableBooleanList
Link copied to clipboard
nullableChar
Link copied to clipboard
nullableCharList
Link copied to clipboard
nullableDouble
Link copied to clipboard
nullableDoubleList
Link copied to clipboard
nullableFloat
Link copied to clipboard
nullableFloatList
Link copied to clipboard
nullableInt
Link copied to clipboard
nullableIntList
Link copied to clipboard
nullableJsonArray
Link copied to clipboard
nullableJsonArrayList
Link copied to clipboard
val JsonModel?.nullableJsonArrayList: JsonDelegateProperty<List<JsonArray?>>
Content copied to clipboard
nullableJsonElement
Link copied to clipboard
nullableJsonElementList
Link copied to clipboard
val JsonModel?.nullableJsonElementList: JsonDelegateProperty<List<JsonElement?>>
Content copied to clipboard
nullableJsonObject
Link copied to clipboard
nullableJsonObjectList
Link copied to clipboard
val JsonModel?.nullableJsonObjectList: JsonDelegateProperty<List<JsonObject?>>
Content copied to clipboard
nullableJsonPrimitive
Link copied to clipboard
val JsonModel?.nullableJsonPrimitive: JsonDelegateProperty<JsonPrimitive?>
Content copied to clipboard
nullableJsonPrimitiveList
Link copied to clipboard
val JsonModel?.nullableJsonPrimitiveList: JsonDelegateProperty<List<JsonPrimitive?>>
Content copied to clipboard
nullableLong
Link copied to clipboard
nullableLongList
Link copied to clipboard
nullableString
Link copied to clipboard
nullableStringList
Link copied to clipboard
string
Link copied to clipboard
stringList
Link copied to clipboard