Enum Class DocumentComparator.ExtensionPoint
- All Implemented Interfaces:
Serializable,Comparable<DocumentComparator.ExtensionPoint>,Constable
- Enclosing class:
- DocumentComparator
Represents the point at which user FilterSteps can be inserted.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents theFilterStepextension point for input A chain, after table infilters run.Represents theFilterStepextension point for input A chain, before table infilters run.Represents theFilterStepextension point for input B chain, after table infilters run.Represents theFilterStepextension point for input B chain, before table infilters run.Represents theFilterStepextension point for the output chain after lexical preservation change resolver filters have run.Represents theFilterStepextension point for the output chain, after table outfilters run.Represents theFilterStepextension point for the output chain, before the attribute selection processing is run.Represents theFilterStepextension point for the output chain, before table outfilters run.Represents theFilterStepextension point for modifying both input chains, before element flattening. -
Method Summary
Modifier and TypeMethodDescriptiontoString()A string that is used to identify the subchain associated with this extension point.Returns the enum constant of this class with the specified name.static DocumentComparator.ExtensionPoint[]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, valueOf
-
Enum Constant Details
-
PRE_FLATTENING
Represents the
FilterStepextension point for modifying both input chains, before element flattening. Currently, only format element flattening is supported.Format flattening: Elements marked using the
@deltaxml:formatattributes are flattened, so that their content can be aligned and compared by the main comparator. Differences in formatting are then reconstructed before the first output extension point. -
INPUT_A_PRE_TABLE
Represents the
FilterStepextension point for input A chain, before table infilters run. -
INPUT_A_POST_TABLE
Represents the
FilterStepextension point for input A chain, after table infilters run. -
INPUT_B_PRE_TABLE
Represents the
FilterStepextension point for input B chain, before table infilters run. -
INPUT_B_POST_TABLE
Represents the
FilterStepextension point for input B chain, after table infilters run. -
OUTPUT_PRE_TABLE
Represents the
FilterStepextension point for the output chain, before table outfilters run. -
OUTPUT_POST_TABLE
Represents the
FilterStepextension point for the output chain, after table outfilters run. -
OUTPUT_PRE_ATTRIBUTE
Represents the
FilterStepextension point for the output chain, before the attribute selection processing is run. -
OUTPUT_FINAL
Represents the
FilterStepextension point for the output chain after lexical preservation change resolver filters have run.
-
-
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
-
toString
A string that is used to identify the subchain associated with this extension point.- Overrides:
toStringin classEnum<DocumentComparator.ExtensionPoint>- Returns:
- a string that is used to identify the subchain associated with this extension point.
-