public enum ExtensionPoint extends Enum<ExtensionPoint>
Represents the points at which user FilterStep
s can be inserted.
Enum Constant and Description |
---|
INPUT_POST_TABLE
Represents the
FilterStep extension point after table input filters have been run. |
INPUT_PRE_TABLE
Represents the
FilterStep extension point before table input filters are 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 output filters have been 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 output filters are run. |
PRE_FLATTENING
Represents the
FilterStep extension point for modifying both input chains, before element flattening. |
Modifier and Type | Method and Description |
---|---|
String |
toString()
A string that is used to identify the subchain associated with this extension point.
|
static ExtensionPoint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtensionPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtensionPoint PRE_FLATTENING
Represents the FilterStep
extension point for modifying both input chains, before element flattening.
public static final ExtensionPoint INPUT_PRE_TABLE
Represents the FilterStep
extension point before table input filters are run.
public static final ExtensionPoint INPUT_POST_TABLE
Represents the FilterStep
extension point after table input filters have been run.
public static final ExtensionPoint OUTPUT_PRE_TABLE
Represents the FilterStep
extension point for the output chain, before table output filters are run.
public static final ExtensionPoint OUTPUT_POST_TABLE
Represents the FilterStep
extension point for the output chain, after table output filters have been run.
public static final ExtensionPoint OUTPUT_PRE_ATTRIBUTE
Represents the FilterStep
extension point for the output chain, before the attribute selection processing is run.
public static final ExtensionPoint OUTPUT_FINAL
Represents the FilterStep
extension point for the output chain after lexical preservation change resolver filters
have run.
public static ExtensionPoint[] values()
for (ExtensionPoint c : ExtensionPoint.values()) System.out.println(c);
public static ExtensionPoint valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<ExtensionPoint>
Copyright © 2023 Deltaman Group Ltd. All Rights Reserved.