Enum Class ChangelogInfo.DeduplicationMode
Object
Enum<ChangelogInfo.DeduplicationMode>
org.apache.spark.sql.connector.catalog.ChangelogInfo.DeduplicationMode
- All Implemented Interfaces:
Serializable,Comparable<ChangelogInfo.DeduplicationMode>,Constable
- Enclosing class:
- ChangelogInfo
Deduplication modes controlling how Spark post-processes raw change data.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRemove identical insert/delete pairs from copy-on-write file rewrites (default).Collapse to one net change per row identity across the entire changelog range.Raw change rows as-is from the connector — no post-processing. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ChangelogInfo.DeduplicationMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
NONE
Raw change rows as-is from the connector — no post-processing. -
DROP_CARRYOVERS
Remove identical insert/delete pairs from copy-on-write file rewrites (default). -
NET_CHANGES
Collapse to one net change per row identity across the entire changelog range.
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException- if the argument is null
-