public enum VisitPhase extends Enum<VisitPhase>
Phase
annotation to specify the Visit Phase during which a DOMElementVisitor
is to be applied.Enum Constant and Description |
---|
ASSEMBLY
Apply the
DOMElementVisitor during the Assembly visit phase. |
PROCESSING
Apply the
DOMElementVisitor during the Processing visit phase. |
Modifier and Type | Method and Description |
---|---|
static VisitPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VisitPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisitPhase ASSEMBLY
DOMElementVisitor
during the Assembly visit phase.public static final VisitPhase PROCESSING
DOMElementVisitor
during the Processing visit phase.public static VisitPhase[] values()
for (VisitPhase c : VisitPhase.values()) System.out.println(c);
public static VisitPhase 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 nullCopyright © 2020. All rights reserved.