public enum Serialization extends Enum<Serialization>
Serialization gives access to the serializer/deserializer used by the OCI Java SDK.
| Modifier and Type | Method and Description |
|---|---|
static com.fasterxml.jackson.databind.ObjectMapper |
getObjectMapper()
Returns the ObjectMapper used to handle JSON requests.
|
static Serialization |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Serialization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Serialization[] values()
for (Serialization c : Serialization.values()) System.out.println(c);
public static Serialization valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static com.fasterxml.jackson.databind.ObjectMapper getObjectMapper()
Returns the ObjectMapper used to handle JSON requests.
Exposed only for internal use.
Copyright © 2016–2022. All rights reserved.