Package jakarta.json
Interface JsonString
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface jakarta.json.JsonValue
JsonValue.ValueType
-
-
Field Summary
-
Fields inherited from interface jakarta.json.JsonValue
EMPTY_JSON_ARRAY, EMPTY_JSON_OBJECT, FALSE, NULL, TRUE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Compares the specified object with thisJsonStringfor equality.java.lang.CharSequencegetChars()Returns the char sequence for the JSON String valuejava.lang.StringgetString()Returns the JSON string value.inthashCode()Returns the hash code value for thisJsonStringobject.-
Methods inherited from interface jakarta.json.JsonValue
asJsonArray, asJsonObject, getValueType, toString
-
-
-
-
Method Detail
-
getString
java.lang.String getString()
Returns the JSON string value.- Returns:
- a JSON string value
-
getChars
java.lang.CharSequence getChars()
Returns the char sequence for the JSON String value- Returns:
- a char sequence for the JSON String value
-
equals
boolean equals(java.lang.Object obj)
Compares the specified object with thisJsonStringfor equality. Returnstrueif and only if the specified object is also aJsonString, and theirgetString()objects are equal.- Overrides:
equalsin classjava.lang.Object- Parameters:
obj- the object to be compared for equality with thisJsonString- Returns:
trueif the specified object is equal to thisJsonString
-
hashCode
int hashCode()
Returns the hash code value for thisJsonStringobject. The hash code of aJsonStringobject is defined to be itsgetString()object's hash code.- Overrides:
hashCodein classjava.lang.Object- Returns:
- the hash code value for this
JsonStringobject
-
-