Interface TransferManagerJsonUnmarshaller<T>
-
- Type Parameters:
T- Type to unmarshall into.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface TransferManagerJsonUnmarshaller<T>
Interface for unmarshalling a field from JSON.
-
-
Field Summary
Fields Modifier and Type Field Description static TransferManagerJsonUnmarshaller<BigDecimal>BIG_DECIMALstatic TransferManagerJsonUnmarshaller<Boolean>BOOLEANstatic TransferManagerJsonUnmarshaller<Double>DOUBLEstatic TransferManagerJsonUnmarshaller<Float>FLOATstatic TransferManagerJsonUnmarshaller<Instant>INSTANTstatic TransferManagerJsonUnmarshaller<Integer>INTEGERstatic TransferManagerJsonUnmarshaller<List<Integer>>LIST_INTstatic TransferManagerJsonUnmarshaller<Long>LONGstatic TransferManagerJsonUnmarshaller<Map<String,Object>>MAPstatic TransferManagerJsonUnmarshaller<Void>NULLstatic TransferManagerJsonUnmarshaller<SdkBytes>SDK_BYTESstatic TransferManagerJsonUnmarshaller<Short>SHORTstatic TransferManagerJsonUnmarshaller<String>STRING
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Tunmarshall(String content, SdkField<?> field)default Tunmarshall(JsonNode jsonContent)default Tunmarshall(JsonNode jsonContent, SdkField<?> field)
-
-
-
Field Detail
-
STRING
static final TransferManagerJsonUnmarshaller<String> STRING
-
SHORT
static final TransferManagerJsonUnmarshaller<Short> SHORT
-
INTEGER
static final TransferManagerJsonUnmarshaller<Integer> INTEGER
-
LONG
static final TransferManagerJsonUnmarshaller<Long> LONG
-
NULL
static final TransferManagerJsonUnmarshaller<Void> NULL
-
FLOAT
static final TransferManagerJsonUnmarshaller<Float> FLOAT
-
DOUBLE
static final TransferManagerJsonUnmarshaller<Double> DOUBLE
-
BIG_DECIMAL
static final TransferManagerJsonUnmarshaller<BigDecimal> BIG_DECIMAL
-
BOOLEAN
static final TransferManagerJsonUnmarshaller<Boolean> BOOLEAN
-
SDK_BYTES
static final TransferManagerJsonUnmarshaller<SdkBytes> SDK_BYTES
-
INSTANT
static final TransferManagerJsonUnmarshaller<Instant> INSTANT
-
MAP
static final TransferManagerJsonUnmarshaller<Map<String,Object>> MAP
-
LIST_INT
static final TransferManagerJsonUnmarshaller<List<Integer>> LIST_INT
-
-