public static enum DataComparator.ExtensionPoint extends java.lang.Enum<DataComparator.ExtensionPoint>
Represents the point at which user FilterStep
s can be inserted.
Enum Constant and Description |
---|
INPUT
Represents the
FilterStep extension point for modifying both A and B input chains. |
INPUT_PRE_FLATTENING
Represents the
FilterStep extension point for modifying both input chains, before element flattening. |
OUTPUT_FINAL
Represents the
FilterStep extension point for the output chain after lexical preservation change resolver filters
have run. |
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 DataComparator.ExtensionPoint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataComparator.ExtensionPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataComparator.ExtensionPoint INPUT_PRE_FLATTENING
Represents the FilterStep
extension point for modifying both input chains, before element flattening.
public static final DataComparator.ExtensionPoint INPUT
Represents the FilterStep
extension point for modifying both A and B input chains.
public static final DataComparator.ExtensionPoint OUTPUT_FINAL
Represents the FilterStep
extension point for the output chain after lexical preservation change resolver filters
have run.
public static DataComparator.ExtensionPoint[] values()
for (DataComparator.ExtensionPoint c : DataComparator.ExtensionPoint.values()) System.out.println(c);
public static DataComparator.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<DataComparator.ExtensionPoint>