- java.lang.Object
-
- java.lang.Enum<Configurator.ExecutionStatus>
-
- ch.qos.logback.classic.spi.Configurator.ExecutionStatus
-
- All Implemented Interfaces:
Serializable,Comparable<Configurator.ExecutionStatus>
- Enclosing interface:
- Configurator
public static enum Configurator.ExecutionStatus extends Enum<Configurator.ExecutionStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DO_NOT_INVOKE_NEXT_IF_ANYINVOKE_NEXT_IF_ANYNEUTRAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Configurator.ExecutionStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static Configurator.ExecutionStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEUTRAL
public static final Configurator.ExecutionStatus NEUTRAL
-
INVOKE_NEXT_IF_ANY
public static final Configurator.ExecutionStatus INVOKE_NEXT_IF_ANY
-
DO_NOT_INVOKE_NEXT_IF_ANY
public static final Configurator.ExecutionStatus DO_NOT_INVOKE_NEXT_IF_ANY
-
-
Method Detail
-
values
public static Configurator.ExecutionStatus[] 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 (Configurator.ExecutionStatus c : Configurator.ExecutionStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Configurator.ExecutionStatus 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
-
-