- java.lang.Object
-
- java.lang.Enum<ConfigurationEvent.EventType>
-
- ch.qos.logback.core.spi.ConfigurationEvent.EventType
-
- All Implemented Interfaces:
Serializable,Comparable<ConfigurationEvent.EventType>
- Enclosing class:
- ConfigurationEvent
public static enum ConfigurationEvent.EventType extends Enum<ConfigurationEvent.EventType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConfigurationEvent.EventTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ConfigurationEvent.EventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_DETECTOR_REGISTERED
public static final ConfigurationEvent.EventType CHANGE_DETECTOR_REGISTERED
-
CHANGE_DETECTOR_RUNNING
public static final ConfigurationEvent.EventType CHANGE_DETECTOR_RUNNING
-
CHANGE_DETECTED
public static final ConfigurationEvent.EventType CHANGE_DETECTED
-
CONFIGURATION_STARTED
public static final ConfigurationEvent.EventType CONFIGURATION_STARTED
-
PARTIAL_CONFIGURATION_ENDED_SUCCESSFULLY
public static final ConfigurationEvent.EventType PARTIAL_CONFIGURATION_ENDED_SUCCESSFULLY
-
CONFIGURATION_ENDED_SUCCESSFULLY
public static final ConfigurationEvent.EventType CONFIGURATION_ENDED_SUCCESSFULLY
-
CONFIGURATION_ENDED_WITH_XML_PARSING_ERRORS
public static final ConfigurationEvent.EventType CONFIGURATION_ENDED_WITH_XML_PARSING_ERRORS
-
-
Method Detail
-
values
public static ConfigurationEvent.EventType[] 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 (ConfigurationEvent.EventType c : ConfigurationEvent.EventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigurationEvent.EventType 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
-
-