api / tv.twelvetone.json / JsonObject / getFloat

getFloat

fun getFloat(name: String, defaultValue: Float): Float

Returns the float value of the member with the specified name in this object. If this object does not contain a member with this name, the given default value is returned. If this object contains multiple members with the given name, the last one will be picked. If this member's value does not represent a JSON number or if it cannot be interpreted as Java float, an exception is thrown.

Parameters

name - the name of the member whose value is to be returned defaultValue - the value to be returned if the requested member is missing

Return
the value of the last member with the specified name, or the given default value if this object does not contain a member with that name