Uses of Interface
software.amazon.awssdk.core.document.Document
-
Packages that use Document Package Description software.amazon.awssdk.core.document software.amazon.awssdk.core.document.internal software.amazon.awssdk.core.protocol -
-
Uses of Document in software.amazon.awssdk.core.document
Methods in software.amazon.awssdk.core.document that return Document Modifier and Type Method Description DocumentDocument.ListBuilder. build()Creates a newDocumentwith the List members as added with add method.DocumentDocument.MapBuilder. build()Creates a newDocumentwith the key value pair pair inserted using put method.static DocumentDocument. fromBoolean(boolean booleanValue)CreateDocumentfrom a boolean.static DocumentDocument. fromList(List<Document> documentList)Create aDocument.ListBuilderfor generating aDocumentby directly allowing user add Documents.static DocumentDocument. fromMap(Map<String,Document> documentMap)Creates 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 Document Modifier and Type Method Description List<Document>Document. asList()Gets the document as aListif it is a document type array.Map<String,Document>Document. asMap()Gets the document as aMap.Methods in software.amazon.awssdk.core.document with parameters of type Document Modifier and Type Method Description Document.ListBuilderDocument.ListBuilder. addDocument(Document document)Adds a Document to the constructed Document List.Document.MapBuilderDocument.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 Document Modifier and Type Method Description static DocumentDocument. fromList(List<Document> documentList)Create aDocument.ListBuilderfor generating aDocumentby directly allowing user add Documents.static DocumentDocument. fromMap(Map<String,Document> documentMap)Creates a Document from a Map of Documents.Document.MapBuilderDocument.MapBuilder. putList(String key, List<Document> documentList)Inserts a Key Value pair to a Document Map with String key and value as List of Document.Document.MapBuilderDocument.MapBuilder. putMap(String key, Map<String,Document> documentMap)Inserts a Key Value pair to a Document Map with String key and Document constructed from Document Map.RDocumentVisitor. visitList(List<Document> documentList)Visits a List Document.default voidVoidDocumentVisitor. visitList(List<Document> documentList)Visits a List Document.RDocumentVisitor. visitMap(Map<String,Document> documentMap)Visits a Map Document.default voidVoidDocumentVisitor. visitMap(Map<String,Document> documentMap)Visits a Map Document. -
Uses of Document in software.amazon.awssdk.core.document.internal
Classes in software.amazon.awssdk.core.document.internal that implement Document Modifier and Type Class Description classBooleanDocumentRepresents a Boolean Document.classListDocumentclassMapDocumentclassNullDocumentclassNumberDocumentclassStringDocumentMethods in software.amazon.awssdk.core.document.internal that return Document Modifier and Type Method Description DocumentListDocument.ListBuilderInternal. build()DocumentMapDocument.MapBuilderInternal. build()Methods in software.amazon.awssdk.core.document.internal that return types with arguments of type Document Modifier and Type Method Description List<Document>BooleanDocument. asList()List<Document>ListDocument. asList()List<Document>MapDocument. asList()List<Document>NullDocument. asList()List<Document>NumberDocument. asList()List<Document>StringDocument. asList()Map<String,Document>BooleanDocument. asMap()Map<String,Document>ListDocument. asMap()Map<String,Document>MapDocument. asMap()Map<String,Document>NullDocument. asMap()Map<String,Document>NumberDocument. asMap()Map<String,Document>StringDocument. asMap()Methods in software.amazon.awssdk.core.document.internal with parameters of type Document Modifier and Type Method Description Document.ListBuilderListDocument.ListBuilderInternal. addDocument(Document document)Document.MapBuilderMapDocument.MapBuilderInternal. putDocument(String key, Document document)Method parameters in software.amazon.awssdk.core.document.internal with type arguments of type Document Modifier and Type Method Description Document.MapBuilderMapDocument.MapBuilderInternal. putList(String key, List<Document> documentList)Document.MapBuilderMapDocument.MapBuilderInternal. putMap(String key, Map<String,Document> documentMap)Constructor parameters in software.amazon.awssdk.core.document.internal with type arguments of type Document Constructor Description ListDocument(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 Modifier and Type Field Description static MarshallingType<Document>MarshallingType. DOCUMENT
-