public static enum IProcessor.STATUS extends java.lang.Enum<IProcessor.STATUS>
Enum Constant and Description |
---|
DECLINED
The DECLINED status means the extention did nothing.
|
HANDLED
The HANDLED status indicated the extention handled the request and no furthur processing is required.
|
MODIFIED
The MODIFIED status let's the listener know the content was modified but should continue processing.
|
Modifier and Type | Method and Description |
---|---|
static IProcessor.STATUS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IProcessor.STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IProcessor.STATUS HANDLED
public static final IProcessor.STATUS DECLINED
public static final IProcessor.STATUS MODIFIED
public static IProcessor.STATUS[] values()
for (IProcessor.STATUS c : IProcessor.STATUS.values()) System.out.println(c);
public static IProcessor.STATUS 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 null