public interface OracleJsonString extends OracleJsonValue
OracleJsonValue.OracleJsonTypeFALSE, NULL, TRUE| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj)
Compares the specified object with this
OracleJsonString. |
CHAR |
getCHAR()
Returns this value as a
java.sql.CHAR |
java.lang.CharSequence |
getChars()
Returns this value as a
CharSequence. |
java.lang.String |
getString()
Returns this value as a
String. |
int |
hashCode()
Returns a hash code that is equal to
getString().hashCode(). |
asJsonArray, asJsonBinary, asJsonDate, asJsonDecimal, asJsonDouble, asJsonFloat, asJsonIntervalDS, asJsonIntervalYM, asJsonNumber, asJsonObject, asJsonString, asJsonTimestamp, asJsonTimestampTZ, asJsonVector, getOracleJsonType, toString, wrapjava.lang.String getString()
String.java.lang.CharSequence getChars()
CharSequence.CHAR getCHAR()
java.sql.CHARint hashCode()
getString().hashCode().hashCode in class java.lang.Objectboolean equals(java.lang.Object obj)
OracleJsonString. Returns
true if and only if the other object is an instance of
OracleJsonString and
getString().equals(((OracleJsonString)obj).getString())equals in class java.lang.Objectobj - the object to be compared for equalityOracleJsonString.