Package org.apache.iceberg.flink.source
Enum Class StreamingStartingStrategy
- All Implemented Interfaces:
- Serializable,- Comparable<StreamingStartingStrategy>,- Constable
Starting strategy for streaming execution.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionStart incremental mode from the earliest snapshot inclusive.Start incremental mode from the latest snapshot inclusive.Start incremental mode from the latest snapshot exclusive.Start incremental mode from a snapshot with a specific id inclusive.Start incremental mode from a snapshot with a specific timestamp inclusive.Do a regular table scan then switch to the incremental mode.
- 
Method SummaryModifier and TypeMethodDescriptionstatic StreamingStartingStrategyReturns the enum constant of this class with the specified name.static StreamingStartingStrategy[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
TABLE_SCAN_THEN_INCREMENTALDo a regular table scan then switch to the incremental mode.The incremental mode starts from the current snapshot exclusive. 
- 
INCREMENTAL_FROM_LATEST_SNAPSHOTStart incremental mode from the latest snapshot inclusive.If it is an empty table, all future append snapshots should be discovered. 
- 
INCREMENTAL_FROM_LATEST_SNAPSHOT_EXCLUSIVEStart incremental mode from the latest snapshot exclusive.If it is an empty table, all future append snapshots should be discovered. 
- 
INCREMENTAL_FROM_EARLIEST_SNAPSHOTStart incremental mode from the earliest snapshot inclusive.If it is an empty table, all future append snapshots should be discovered. 
- 
INCREMENTAL_FROM_SNAPSHOT_IDStart incremental mode from a snapshot with a specific id inclusive.
- 
INCREMENTAL_FROM_SNAPSHOT_TIMESTAMPStart incremental mode from a snapshot with a specific timestamp inclusive.If the timestamp is between two snapshots, it should start from the snapshot after the timestamp. 
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-