public class GsonResultObject extends Object implements ResultObject
ResultObject
implementation based on a JsonObject
.Constructor and Description |
---|
GsonResultObject(com.google.gson.JsonObject jsonObject,
GsonResultElementFactory resultElementFactory) |
Modifier and Type | Method and Description |
---|---|
<T> T |
as(Class<T> objectType)
Returns a value from this element.
|
BigDecimal |
asBigDecimal()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as BigDecimal . |
BigInteger |
asBigInteger()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as BigInteger . |
boolean |
asBoolean()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as boolean . |
byte |
asByte()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as byte . |
char |
asCharacter()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as char . |
double |
asDouble()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as double . |
float |
asFloat()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as float . |
int |
asInteger()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as int . |
long |
asLong()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as long . |
short |
asShort()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as short . |
String |
asString()
In case this
ResultElement is considered a ResultPrimitive , use this method to access its value
as String . |
boolean |
equals(Object o) |
ResultElement |
get(String elementName)
Returns the element with the given name from this result.
|
ResultCollection |
getAsCollection()
Returns this
ResultElement as an instance of ResultCollection . |
ResultObject |
getAsObject()
Returns this
ResultElement as an instance of ResultObject . |
ResultPrimitive |
getAsPrimitive()
Returns this
ResultElement as an instance of ResultPrimitive . |
com.google.gson.JsonObject |
getJsonObject() |
GsonResultElementFactory |
getResultElementFactory() |
int |
hashCode() |
boolean |
isResultCollection()
Checks whether this
ResultElement represents a collection of result elements and, therefore, is a
ResultCollection . |
boolean |
isResultObject()
Checks whether this
ResultElement represents a structured object and, therefore, is a
ResultObject . |
boolean |
isResultPrimitive()
Checks whether this
ResultElement represents an unstructured value and, therefore, is a
ResultPrimitive . |
String |
toString() |
public GsonResultObject(com.google.gson.JsonObject jsonObject, GsonResultElementFactory resultElementFactory)
public boolean isResultPrimitive()
ResultElement
ResultElement
represents an unstructured value and, therefore, is a
ResultPrimitive
.isResultPrimitive
in interface ResultElement
ResultPrimitive
, otherwise falsepublic boolean isResultCollection()
ResultElement
ResultElement
represents a collection of result elements and, therefore, is a
ResultCollection
.isResultCollection
in interface ResultElement
ResultCollection
, otherwise falsepublic boolean isResultObject()
ResultElement
ResultElement
represents a structured object and, therefore, is a
ResultObject
.isResultObject
in interface ResultElement
ResultObject
, otherwise falsepublic ResultPrimitive getAsPrimitive() throws UnsupportedOperationException
ResultElement
ResultElement
as an instance of ResultPrimitive
.getAsPrimitive
in interface ResultElement
ResultPrimitive
UnsupportedOperationException
- If the cast into ResultPrimitive
failed, e.g. in case it is not a primitivepublic ResultCollection getAsCollection() throws UnsupportedOperationException
ResultElement
ResultElement
as an instance of ResultCollection
.getAsCollection
in interface ResultElement
ResultCollection
UnsupportedOperationException
- If the cast into ResultCollection
failed, e.g. in case it is not a collectionpublic ResultObject getAsObject()
ResultElement
ResultElement
as an instance of ResultObject
.getAsObject
in interface ResultElement
ResultObject
public boolean asBoolean() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as boolean
.asBoolean
in interface ResultElement
boolean
valueUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as boolean
public byte asByte() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as byte
.asByte
in interface ResultElement
byte
valueUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as byte
public char asCharacter() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as char
.asCharacter
in interface ResultElement
char
valueUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as char
public String asString() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as String
.asString
in interface ResultElement
String
objectUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as String
public int asInteger() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as int
.asInteger
in interface ResultElement
int
valueUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as int
public short asShort() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as short
.asShort
in interface ResultElement
short
valueUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as short
public long asLong() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as long
.asLong
in interface ResultElement
long
valueUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as long
public float asFloat() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as float
.asFloat
in interface ResultElement
float
valueUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as float
public double asDouble() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as double
.asDouble
in interface ResultElement
double
valueUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as double
public BigInteger asBigInteger() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as BigInteger
.asBigInteger
in interface ResultElement
BigInteger
objectUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as BigInteger
public BigDecimal asBigDecimal() throws UnsupportedOperationException
ResultElement
ResultElement
is considered a ResultPrimitive
, use this method to access its value
as BigDecimal
.asBigDecimal
in interface ResultElement
BigDecimal
objectUnsupportedOperationException
- If this ResultElement
is not considered a ResultPrimitive
or its value cannot be
represented as BigDecimal
public ResultElement get(String elementName) throws UnsupportedOperationException
get
in interface ResultObject
elementName
- The name of the element to be accessed.GsonResultPrimitive
representing the corresponding element.UnsupportedOperationException
- If the element is not an instance of ResultObject
.public <T> T as(Class<T> objectType) throws UnsupportedOperationException
Important: In order to deserialize a result element to an object of a given type, you have to
annotate all relevant field members of the respective class with ElementName
. For example:
class MyObject
{
@ElementName( "MANDT" )
SapClient sapClient;
}
as
in interface ResultObject
T
- The type the result object shall be casted toobjectType
- The type into which the element value should be converted.T
.UnsupportedOperationException
- If the value could not be converted to the given type.public com.google.gson.JsonObject getJsonObject()
public GsonResultElementFactory getResultElementFactory()
Copyright © 2018 SAP SE. All rights reserved.