public interface JsonObject
- Since:
- Omix 1.8.2
- Author:
- Dr. Peter Droste
-
Method Summary
Modifier and Type Method Description boolean
containsKey(String name)
boolean
containsValue(@IsVarType Object value)
static JsonObject
fromMap(Map<String,? extends @IsVarType Object> values)
Set<String>
getKeys()
@IsVarType Object
getValue(String name)
Collection<@IsVarType Object>
getValues()
@IsVarType Object
removeValue(String name)
void
setValue(String name, @IsVarType Object value)
int
size()
Map<String,@IsVarType Object>
toMap()
-
Method Details
-
getValue
-
setValue
-
removeValue
-
containsKey
-
containsValue
-
getKeys
-
getValues
Collection<@IsVarType Object> getValues() -
size
int size() -
toMap
Map<String,@IsVarType Object> toMap() -
fromMap
-