Enum BuilderConfigurationWrapperFactory.EventSourceSupport
- java.lang.Object
-
- java.lang.Enum<BuilderConfigurationWrapperFactory.EventSourceSupport>
-
- org.apache.commons.configuration2.builder.BuilderConfigurationWrapperFactory.EventSourceSupport
-
- All Implemented Interfaces:
Serializable,Comparable<BuilderConfigurationWrapperFactory.EventSourceSupport>
- Enclosing class:
- BuilderConfigurationWrapperFactory
public static enum BuilderConfigurationWrapperFactory.EventSourceSupport extends Enum<BuilderConfigurationWrapperFactory.EventSourceSupport>
An enumeration class with different options for supporting the
EventSourceinterface in generatedImmutableConfigurationproxies.Using literals of this class it is possible to specify that a
ImmutableConfigurationobject returned byBuilderConfigurationWrapperFactoryalso implements theEventSourceinterface and how this implementation should work. See the documentation of the single constants for more details.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BuilderConfigurationWrapperFactory.EventSourceSupportvalueOf(String name)Returns the enum constant of this type with the specified name.static BuilderConfigurationWrapperFactory.EventSourceSupport[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final BuilderConfigurationWrapperFactory.EventSourceSupport NONE
No support of theEventSourceinterface. If this option is set,ImmutableConfigurationobjects generated byBuilderConfigurationWrapperFactorydo not implement theEventSourceinterface.
-
DUMMY
public static final BuilderConfigurationWrapperFactory.EventSourceSupport DUMMY
Dummy support of theEventSourceinterface. This option causesImmutableConfigurationobjects generated byBuilderConfigurationWrapperFactoryto implement theEventSourceinterface, however, this implementation consists only of empty dummy methods without real functionality.
-
BUILDER
public static final BuilderConfigurationWrapperFactory.EventSourceSupport BUILDER
EventSourcesupport is implemented by delegating to the associatedConfigurationBuilderobject. If this option is used, generatedImmutableConfigurationobjects provide a fully functional implementation ofEventSourceby delegating to the builder. Because theConfigurationBuilderinterface extendsEventSourcethis delegation is always possible.
-
-
Method Detail
-
values
public static BuilderConfigurationWrapperFactory.EventSourceSupport[] 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 (BuilderConfigurationWrapperFactory.EventSourceSupport c : BuilderConfigurationWrapperFactory.EventSourceSupport.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuilderConfigurationWrapperFactory.EventSourceSupport 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
-
-