Enum BuilderConfigurationWrapperFactory.EventSourceSupport

    • Enum Constant Detail

      • DUMMY

        public static final BuilderConfigurationWrapperFactory.EventSourceSupport DUMMY
        Dummy support of the EventSource interface. This option causes ImmutableConfiguration objects generated by BuilderConfigurationWrapperFactory to implement the EventSource interface, however, this implementation consists only of empty dummy methods without real functionality.
      • BUILDER

        public static final BuilderConfigurationWrapperFactory.EventSourceSupport BUILDER
        EventSource support is implemented by delegating to the associated ConfigurationBuilder object. If this option is used, generated ImmutableConfiguration objects provide a fully functional implementation of EventSource by delegating to the builder. Because the ConfigurationBuilder interface extends EventSource this 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 name
        NullPointerException - if the argument is null