Class JsonNodeParser
java.lang.Object
software.amazon.awssdk.protocols.jsoncore.JsonNodeParser
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final class
A builder for configuring and creatingJsonNodeParser
. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final software.amazon.awssdk.thirdparty.jackson.core.JsonFactory
The defaultJsonFactory
used forcreate()
or if a factory is not configured viaJsonNodeParser.Builder.jsonFactory(JsonFactory)
. -
Method Summary
Modifier and TypeMethodDescriptionstatic JsonNodeParser.Builder
builder()
Create a parser using custom configuration.static JsonNodeParser
create()
Create a parser using the default configuration.parse
(byte[] content) Parse the providedbyte[]
into aJsonNode
.parse
(InputStream content) Parse the providedInputStream
into aJsonNode
.
-
Field Details
-
DEFAULT_JSON_FACTORY
public static final software.amazon.awssdk.thirdparty.jackson.core.JsonFactory DEFAULT_JSON_FACTORYThe defaultJsonFactory
used forcreate()
or if a factory is not configured viaJsonNodeParser.Builder.jsonFactory(JsonFactory)
.
-
-
Method Details
-
create
Create a parser using the default configuration. -
builder
Create a parser using custom configuration. -
parse
Parse the providedInputStream
into aJsonNode
. -
parse
Parse the providedbyte[]
into aJsonNode
. -
parse
-