Package io.debezium.document
Interface Array.Entry
-
- All Superinterfaces:
Comparable<Array.Entry>
- All Known Implementing Classes:
BasicEntry
- Enclosing interface:
- Array
public static interface Array.Entry extends Comparable<Array.Entry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default intcompareTo(Array.Entry that)intgetIndex()Get the index of the entryValuegetValue()Get the value of the entry.
-
-
-
Method Detail
-
getIndex
int getIndex()
Get the index of the entry- Returns:
- the entry's index; never null
-
getValue
Value getValue()
Get the value of the entry.- Returns:
- the entry's value; may be null
-
compareTo
default int compareTo(Array.Entry that)
- Specified by:
compareToin interfaceComparable<Array.Entry>
-
-