Uses of Interface
io.debezium.document.Document.Field
-
Packages that use Document.Field Package Description io.debezium.document -
-
Uses of Document.Field in io.debezium.document
Classes in io.debezium.document that implement Document.Field Modifier and Type Class Description (package private) classBasicFieldPackage-level implementation of aDocument.Fieldinside aDocument.Fields in io.debezium.document with type parameters of type Document.Field Modifier and Type Field Description (package private) static Function<Map.Entry<? extends CharSequence,Value>,Document.Field>BasicDocument. CONVERT_ENTRY_TO_FIELDMethods in io.debezium.document that return Document.Field Modifier and Type Method Description static Document.FieldDocument. field(String name, Value value)static Document.FieldDocument. field(String name, Object value)default Document.FieldDocument. getField(CharSequence fieldName)Gets the field in this document with the given field name.Methods in io.debezium.document that return types with arguments of type Document.Field Modifier and Type Method Description default Stream<Document.Field>Document. children(Path path)Find a document at the given path and obtain a stream over its fields.default Stream<Document.Field>Document. children(String fieldName)Find the document at the given field name and obtain a stream over its fields.Iterator<Document.Field>BasicDocument. iterator()default Stream<Document.Field>Document. stream()Returns a sequentialStreamwith this array as its source.Methods in io.debezium.document with parameters of type Document.Field Modifier and Type Method Description intBasicField. compareTo(Document.Field that)default intDocument.Field. compareTo(Document.Field that)default DocumentDocument. setValue(Document.Field field)Set the field on this document.Method parameters in io.debezium.document with type arguments of type Document.Field Modifier and Type Method Description DocumentBasicDocument. putAll(Iterable<Document.Field> object)default DocumentDocument. putAll(Iterable<Document.Field> fields)Sets on this object all name/value pairs from the supplied object.default DocumentDocument. putAll(Iterable<Document.Field> fields, Predicate<CharSequence> acceptableFieldNames)Attempts to copy all of the acceptable fields from the source and set on this document, overwriting any existing values.default DocumentDocument. putAll(Iterator<Document.Field> fields)Sets on this object all name/value pairs from the supplied object.
-