Package org.owasp.esapi.reference
Enum DefaultSecurityConfiguration.DefaultSearchPath
- java.lang.Object
-
- java.lang.Enum<DefaultSecurityConfiguration.DefaultSearchPath>
-
- org.owasp.esapi.reference.DefaultSecurityConfiguration.DefaultSearchPath
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DefaultSecurityConfiguration.DefaultSearchPath>
- Enclosing class:
- DefaultSecurityConfiguration
public static enum DefaultSecurityConfiguration.DefaultSearchPath extends java.lang.Enum<DefaultSecurityConfiguration.DefaultSearchPath>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOT_ESAPI
ESAPI
RESOURCE_DIRECTORY
RESOURCES
ROOT
SRC_MAIN_RESOURCES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
value()
static DefaultSecurityConfiguration.DefaultSearchPath
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DefaultSecurityConfiguration.DefaultSearchPath[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOURCE_DIRECTORY
public static final DefaultSecurityConfiguration.DefaultSearchPath RESOURCE_DIRECTORY
-
SRC_MAIN_RESOURCES
public static final DefaultSecurityConfiguration.DefaultSearchPath SRC_MAIN_RESOURCES
-
ROOT
public static final DefaultSecurityConfiguration.DefaultSearchPath ROOT
-
DOT_ESAPI
public static final DefaultSecurityConfiguration.DefaultSearchPath DOT_ESAPI
-
ESAPI
public static final DefaultSecurityConfiguration.DefaultSearchPath ESAPI
-
RESOURCES
public static final DefaultSecurityConfiguration.DefaultSearchPath RESOURCES
-
-
Method Detail
-
values
public static DefaultSecurityConfiguration.DefaultSearchPath[] 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 (DefaultSecurityConfiguration.DefaultSearchPath c : DefaultSecurityConfiguration.DefaultSearchPath.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultSecurityConfiguration.DefaultSearchPath valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
value
public java.lang.String value()
-
-