| Package | Description |
|---|---|
| io.debezium.document |
| Modifier and Type | Class and Description |
|---|---|
(package private) class |
BasicField
Package-level implementation of a
Document.Field inside a Document. |
| Modifier and Type | Field and Description |
|---|---|
(package private) static Function<Map.Entry<? extends CharSequence,Value>,Document.Field> |
BasicDocument.CONVERT_ENTRY_TO_FIELD |
| Modifier and Type | Method and Description |
|---|---|
static Document.Field |
Document.field(String name,
Object value) |
static Document.Field |
Document.field(String name,
Value value) |
default Document.Field |
Document.getField(CharSequence fieldName)
Gets the field in this document with the given field name.
|
| Modifier and Type | Method and 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 sequential
Stream with this array as its source. |
| Modifier and Type | Method and Description |
|---|---|
int |
BasicField.compareTo(Document.Field that) |
default int |
Document.Field.compareTo(Document.Field that) |
default Document |
Document.setValue(Document.Field field)
Set the field on this document.
|
| Modifier and Type | Method and Description |
|---|---|
default Document |
Document.putAll(Iterable<Document.Field> fields)
Sets on this object all name/value pairs from the supplied object.
|
Document |
BasicDocument.putAll(Iterable<Document.Field> object) |
default Document |
Document.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 Document |
Document.putAll(Iterator<Document.Field> fields)
Sets on this object all name/value pairs from the supplied object.
|
Copyright © 2018 JBoss by Red Hat. All rights reserved.