public static enum Interceptor.DIRECTIVE extends Enum<Interceptor.DIRECTIVE>
| Enum Constant and Description |
|---|
CHANGED
The node is considered changed.
|
CONTINUE
Consider this node unchanged and continue to check child nodes.
|
DEFAULT
The default value, check this node and if the node is unchanged,
continue to check child nodes.
|
UNCHANGED
Neither this node nor any of it's child nodes are changed.
|
| Modifier and Type | Method and Description |
|---|---|
static Interceptor.DIRECTIVE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Interceptor.DIRECTIVE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Interceptor.DIRECTIVE CHANGED
public static final Interceptor.DIRECTIVE DEFAULT
public static final Interceptor.DIRECTIVE CONTINUE
public static final Interceptor.DIRECTIVE UNCHANGED
public static Interceptor.DIRECTIVE[] values()
for (Interceptor.DIRECTIVE c : Interceptor.DIRECTIVE.values()) System.out.println(c);
public static Interceptor.DIRECTIVE 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 © 2006–2020 Esito AS. All rights reserved.