Uses of Class
org.apache.commons.configuration2.event.ConfigurationErrorEvent
-
Packages that use ConfigurationErrorEvent Package Description org.apache.commons.configuration2.event This package contains interfaces and classes for receiving notifications about changes at configurations. -
-
Uses of ConfigurationErrorEvent in org.apache.commons.configuration2.event
Fields in org.apache.commons.configuration2.event with type parameters of type ConfigurationErrorEvent Modifier and Type Field Description static EventType<ConfigurationErrorEvent>
ConfigurationErrorEvent. ANY
Constant for the common event type for all error events.static EventType<ConfigurationErrorEvent>
ConfigurationErrorEvent. READ
Constant for the event type indicating a read error.static EventType<ConfigurationErrorEvent>
ConfigurationErrorEvent. WRITE
Constant for the event type indicating a write error.Methods in org.apache.commons.configuration2.event with type parameters of type ConfigurationErrorEvent Modifier and Type Method Description <T extends ConfigurationErrorEvent>
voidBaseEventSource. fireError(EventType<T> eventType, EventType<?> operationType, java.lang.String propertyName, java.lang.Object propertyValue, java.lang.Throwable cause)
Creates an error event object and delivers it to all registered error listeners of a matching type.Methods in org.apache.commons.configuration2.event that return ConfigurationErrorEvent Modifier and Type Method Description protected ConfigurationErrorEvent
BaseEventSource. createErrorEvent(EventType<? extends ConfigurationErrorEvent> type, EventType<?> opType, java.lang.String propName, java.lang.Object propValue, java.lang.Throwable ex)
Creates aConfigurationErrorEvent
object based on the passed in parameters.Method parameters in org.apache.commons.configuration2.event with type arguments of type ConfigurationErrorEvent Modifier and Type Method Description protected ConfigurationErrorEvent
BaseEventSource. createErrorEvent(EventType<? extends ConfigurationErrorEvent> type, EventType<?> opType, java.lang.String propName, java.lang.Object propValue, java.lang.Throwable ex)
Creates aConfigurationErrorEvent
object based on the passed in parameters.Constructor parameters in org.apache.commons.configuration2.event with type arguments of type ConfigurationErrorEvent Constructor Description ConfigurationErrorEvent(java.lang.Object source, EventType<? extends ConfigurationErrorEvent> eventType, EventType<?> operationType, java.lang.String propName, java.lang.Object propValue, java.lang.Throwable cause)
Creates a new instance ofConfigurationErrorEvent
and sets all its properties.
-