Package de.hybris.bootstrap.loader.rule
Enum IgnoreClassLoadingRule.IgnoredStatus
- java.lang.Object
-
- java.lang.Enum<IgnoreClassLoadingRule.IgnoredStatus>
-
- de.hybris.bootstrap.loader.rule.IgnoreClassLoadingRule.IgnoredStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<IgnoreClassLoadingRule.IgnoredStatus>
- Enclosing interface:
- IgnoreClassLoadingRule
public static enum IgnoreClassLoadingRule.IgnoredStatus extends java.lang.Enum<IgnoreClassLoadingRule.IgnoredStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description IGNOREDUNDEFINEDWHITELISTED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IgnoreClassLoadingRule.IgnoredStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IgnoreClassLoadingRule.IgnoredStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IGNORED
public static final IgnoreClassLoadingRule.IgnoredStatus IGNORED
-
WHITELISTED
public static final IgnoreClassLoadingRule.IgnoredStatus WHITELISTED
-
UNDEFINED
public static final IgnoreClassLoadingRule.IgnoredStatus UNDEFINED
-
-
Method Detail
-
values
public static IgnoreClassLoadingRule.IgnoredStatus[] 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 (IgnoreClassLoadingRule.IgnoredStatus c : IgnoreClassLoadingRule.IgnoredStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IgnoreClassLoadingRule.IgnoredStatus 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
-
-