Enum BundlingConfigInitializer

    • Method Detail

      • values

        public static BundlingConfigInitializer[] 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 (BundlingConfigInitializer c : BundlingConfigInitializer.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BundlingConfigInitializer 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
      • initialize

        public void initialize​(@NotNull
                               @NotNull NodeBuilder builder)
        Description copied from interface: RepositoryInitializer
        Initializes repository content. This method is called as soon as a repository becomes available. Note that the repository may already have been initialized, so the implementation of this method should check for that before blindly adding new content.
        Specified by:
        initialize in interface RepositoryInitializer
        Parameters:
        builder - builder for accessing and modifying repository content