Enum DispatcherWebscript.ServletConfigOptions
- java.lang.Object
-
- java.lang.Enum<DispatcherWebscript.ServletConfigOptions>
-
- com.gradecak.alfresco.mvc.webscript.DispatcherWebscript.ServletConfigOptions
-
- All Implemented Interfaces:
Serializable,Comparable<DispatcherWebscript.ServletConfigOptions>
- Enclosing class:
- DispatcherWebscript
public static enum DispatcherWebscript.ServletConfigOptions extends Enum<DispatcherWebscript.ServletConfigOptions>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISABLED_PARENT_HANDLER_ADAPTERSDISABLED_PARENT_HANDLER_EXCEPTION_RESOLVERSDISABLED_PARENT_HANDLER_MAPPINGSDISABLED_PARENT_VIEW_RESOLVERS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DispatcherWebscript.ServletConfigOptionsvalueOf(String name)Returns the enum constant of this type with the specified name.static DispatcherWebscript.ServletConfigOptions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLED_PARENT_HANDLER_MAPPINGS
public static final DispatcherWebscript.ServletConfigOptions DISABLED_PARENT_HANDLER_MAPPINGS
-
DISABLED_PARENT_HANDLER_ADAPTERS
public static final DispatcherWebscript.ServletConfigOptions DISABLED_PARENT_HANDLER_ADAPTERS
-
DISABLED_PARENT_VIEW_RESOLVERS
public static final DispatcherWebscript.ServletConfigOptions DISABLED_PARENT_VIEW_RESOLVERS
-
DISABLED_PARENT_HANDLER_EXCEPTION_RESOLVERS
public static final DispatcherWebscript.ServletConfigOptions DISABLED_PARENT_HANDLER_EXCEPTION_RESOLVERS
-
-
Method Detail
-
values
public static DispatcherWebscript.ServletConfigOptions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DispatcherWebscript.ServletConfigOptions c : DispatcherWebscript.ServletConfigOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DispatcherWebscript.ServletConfigOptions valueOf(String name)
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
-
-