Enum BaseRewrite.ServletRewriteFlow
java.lang.Object
java.lang.Enum<BaseRewrite.ServletRewriteFlow>
org.ocpsoft.rewrite.servlet.event.BaseRewrite.ServletRewriteFlow
- All Implemented Interfaces:
Serializable,Comparable<BaseRewrite.ServletRewriteFlow>,java.lang.constant.Constable,Flow
- Enclosing class:
- BaseRewrite<IN extends jakarta.servlet.ServletRequest,
OUT extends jakarta.servlet.ServletResponse>
public static enum BaseRewrite.ServletRewriteFlow
extends Enum<BaseRewrite.ServletRewriteFlow>
implements Flow
Enum to represent the finite state of the Rewrite container.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturn true if the givenBaseRewrite.ServletRewriteFlowis a descendant ofthis.booleanbooleanis(BaseRewrite.ServletRewriteFlow other) Return true if thisBaseRewrite.ServletRewriteFlowis a descendant of the given value.booleanReturns the enum constant of this type with the specified name.static BaseRewrite.ServletRewriteFlow[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
UN_HANDLED
-
HANDLED
-
PROCEED
-
CONTINUE
-
INCLUDE
-
ABORT_REQUEST
-
FORWARD
-
REDIRECT_TEMPORARY
-
REDIRECT_PERMANENT
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
is
Return true if thisBaseRewrite.ServletRewriteFlowis a descendant of the given value. -
contains
Return true if the givenBaseRewrite.ServletRewriteFlowis a descendant ofthis. -
isHandled
public boolean isHandled() -
is
-