Class JsonString
java.lang.Object
net.sourceforge.plantuml.json.JsonValue
net.sourceforge.plantuml.json.JsonString
- All Implemented Interfaces:
Serializable
- See Also:
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionasString()Returns this JSON value as String, assuming that this value represents a JSON string.booleanIndicates whether some other object is "equal to" this one according to the contract specified inObject.equals(Object).inthashCode()booleanisString()Detects whether this value represents a JSON string.
-
Method Details
-
isString
-
asString
-
hashCode
-
equals
Description copied from class:JsonValueIndicates whether some other object is "equal to" this one according to the contract specified inObject.equals(Object).Two JsonValues are considered equal if and only if they represent the same JSON text. As a consequence, two given JsonObjects may be different even though they contain the same set of names with the same values, but in a different order.
-