Package com.logicaldoc.util.config
Enum WebConfigurator.INIT_PARAM
- java.lang.Object
-
- java.lang.Enum<WebConfigurator.INIT_PARAM>
-
- com.logicaldoc.util.config.WebConfigurator.INIT_PARAM
-
- All Implemented Interfaces:
Serializable
,Comparable<WebConfigurator.INIT_PARAM>
- Enclosing class:
- WebConfigurator
public static enum WebConfigurator.INIT_PARAM extends Enum<WebConfigurator.INIT_PARAM>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PARAM_APPEND
PARAM_OVERWRITE
PARAM_STOP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebConfigurator.INIT_PARAM
valueOf(String name)
Returns the enum constant of this type with the specified name.static WebConfigurator.INIT_PARAM[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARAM_OVERWRITE
public static final WebConfigurator.INIT_PARAM PARAM_OVERWRITE
-
PARAM_APPEND
public static final WebConfigurator.INIT_PARAM PARAM_APPEND
-
PARAM_STOP
public static final WebConfigurator.INIT_PARAM PARAM_STOP
-
-
Method Detail
-
values
public static WebConfigurator.INIT_PARAM[] 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 (WebConfigurator.INIT_PARAM c : WebConfigurator.INIT_PARAM.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebConfigurator.INIT_PARAM 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
-
-