public static enum DocumentComparator.ExtensionPoint extends java.lang.Enum<DocumentComparator.ExtensionPoint>
Represents the point at which user FilterStep
s can be inserted.
Enum Constant and Description |
---|
INPUT_A_POST_TABLE
Represents the
FilterStep extension point for input A chain, after table infilters run. |
INPUT_A_PRE_TABLE
Represents the
FilterStep extension point for input A chain, before table infilters run. |
INPUT_B_POST_TABLE
Represents the
FilterStep extension point for input B chain, after table infilters run. |
INPUT_B_PRE_TABLE
Represents the
FilterStep extension point for input B chain, before table infilters run. |
OUTPUT_FINAL
Represents the
FilterStep extension point for the output chain after lexical preservation change resolver filters
have run. |
OUTPUT_POST_TABLE
Represents the
FilterStep extension point for the output chain, after table outfilters run. |
OUTPUT_PRE_ATTRIBUTE
Represents the
FilterStep extension point for the output chain, before the attribute selection processing is run. |
OUTPUT_PRE_TABLE
Represents the
FilterStep extension point for the output chain, before table outfilters run. |
PRE_FLATTENING
Represents the
FilterStep extension point for modifying both input chains, before element flattening. |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
A string that is used to identify the subchain associated with this extension point.
|
static DocumentComparator.ExtensionPoint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DocumentComparator.ExtensionPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentComparator.ExtensionPoint PRE_FLATTENING
Represents the FilterStep
extension point for modifying both input chains, before element flattening. Currently,
only format element flattening is supported.
Format flattening: Elements marked using the @deltaxml:format
attributes 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.
public static final DocumentComparator.ExtensionPoint INPUT_A_PRE_TABLE
Represents the FilterStep
extension point for input A chain, before table infilters run.
public static final DocumentComparator.ExtensionPoint INPUT_A_POST_TABLE
Represents the FilterStep
extension point for input A chain, after table infilters run.
public static final DocumentComparator.ExtensionPoint INPUT_B_PRE_TABLE
Represents the FilterStep
extension point for input B chain, before table infilters run.
public static final DocumentComparator.ExtensionPoint INPUT_B_POST_TABLE
Represents the FilterStep
extension point for input B chain, after table infilters run.
public static final DocumentComparator.ExtensionPoint OUTPUT_PRE_TABLE
Represents the FilterStep
extension point for the output chain, before table outfilters run.
public static final DocumentComparator.ExtensionPoint OUTPUT_POST_TABLE
Represents the FilterStep
extension point for the output chain, after table outfilters run.
public static final DocumentComparator.ExtensionPoint OUTPUT_PRE_ATTRIBUTE
Represents the FilterStep
extension point for the output chain, before the attribute selection processing is run.
public static final DocumentComparator.ExtensionPoint OUTPUT_FINAL
Represents the FilterStep
extension point for the output chain after lexical preservation change resolver filters
have run.
public static DocumentComparator.ExtensionPoint[] values()
for (DocumentComparator.ExtensionPoint c : DocumentComparator.ExtensionPoint.values()) System.out.println(c);
public static DocumentComparator.ExtensionPoint valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<DocumentComparator.ExtensionPoint>