Uses of Interface
software.amazon.awssdk.core.document.Document
Packages that use Document
Package
Description
-
Uses of Document in software.amazon.awssdk.core.document
Methods in software.amazon.awssdk.core.document that return DocumentModifier and TypeMethodDescriptionDocument.ListBuilder.build()Creates a newDocumentwith the List members as added with add method.Document.MapBuilder.build()Creates a newDocumentwith the key value pair pair inserted using put method.static DocumentDocument.fromBoolean(boolean booleanValue) CreateDocumentfrom a boolean.static DocumentCreate aDocument.ListBuilderfor generating aDocumentby directly allowing user add Documents.static DocumentCreates a Document from a Map of Documents.static DocumentDocument.fromNull()Creates a document is anullvalue.static DocumentDocument.fromNumber(double number) CreateDocumentfrom a double.static DocumentDocument.fromNumber(float number) CreateDocumentfrom a float.static DocumentDocument.fromNumber(int number) CreateDocumentfrom a int.static DocumentDocument.fromNumber(long number) CreateDocumentfrom a long.static DocumentDocument.fromNumber(String number) CreateDocumentfrom a String.static DocumentDocument.fromNumber(BigDecimal number) CreateDocumentfrom a BigDecimal.static DocumentDocument.fromNumber(BigInteger number) CreateDocumentfrom a BigInteger.static DocumentDocument.fromNumber(SdkNumber number) static DocumentDocument.fromString(String string) CreateDocumentfrom a string, using the provided String.Methods in software.amazon.awssdk.core.document that return types with arguments of type DocumentModifier and TypeMethodDescriptionDocument.asList()Gets the document as aListif it is a document type array.Document.asMap()Gets the document as aMap.Methods in software.amazon.awssdk.core.document with parameters of type DocumentModifier and TypeMethodDescriptionDocument.ListBuilder.addDocument(Document document) Adds a Document to the constructed Document List.Document.MapBuilder.putDocument(String key, Document document) Inserts a Key Value pair to a Document Map with String key and the given Document.Method parameters in software.amazon.awssdk.core.document with type arguments of type DocumentModifier and TypeMethodDescriptionstatic DocumentCreate aDocument.ListBuilderfor generating aDocumentby directly allowing user add Documents.static DocumentCreates a Document from a Map of Documents.Inserts a Key Value pair to a Document Map with String key and value as List of Document.Inserts a Key Value pair to a Document Map with String key and Document constructed from Document Map.Visits a List Document.default voidVisits a List Document.Visits a Map Document.default voidVisits a Map Document. -
Uses of Document in software.amazon.awssdk.core.document.internal
Classes in software.amazon.awssdk.core.document.internal that implement DocumentModifier and TypeClassDescriptionfinal classRepresents a Boolean Document.final classfinal classfinal classclassfinal classMethods in software.amazon.awssdk.core.document.internal that return DocumentModifier and TypeMethodDescriptionListDocument.ListBuilderInternal.build()MapDocument.MapBuilderInternal.build()Methods in software.amazon.awssdk.core.document.internal that return types with arguments of type DocumentModifier and TypeMethodDescriptionBooleanDocument.asList()ListDocument.asList()MapDocument.asList()NullDocument.asList()NumberDocument.asList()StringDocument.asList()BooleanDocument.asMap()ListDocument.asMap()MapDocument.asMap()NullDocument.asMap()NumberDocument.asMap()StringDocument.asMap()Methods in software.amazon.awssdk.core.document.internal with parameters of type DocumentModifier and TypeMethodDescriptionListDocument.ListBuilderInternal.addDocument(Document document) MapDocument.MapBuilderInternal.putDocument(String key, Document document) Method parameters in software.amazon.awssdk.core.document.internal with type arguments of type DocumentModifier and TypeMethodDescriptionConstructor parameters in software.amazon.awssdk.core.document.internal with type arguments of type DocumentModifierConstructorDescriptionListDocument(List<Document> documentList) Create a NewListDocumentwith List of Document documentList as passed in constructorMapDocument(Map<String, Document> documentMap) Create a NewMapDocumentwith Map of Document value as passed in constructor -
Uses of Document in software.amazon.awssdk.core.protocol
Fields in software.amazon.awssdk.core.protocol with type parameters of type Document