Enum BundlingConfigInitializer
- java.lang.Object
-
- java.lang.Enum<BundlingConfigInitializer>
-
- org.apache.jackrabbit.oak.plugins.document.bundlor.BundlingConfigInitializer
-
- All Implemented Interfaces:
Serializable
,Comparable<BundlingConfigInitializer>
,RepositoryInitializer
public enum BundlingConfigInitializer extends Enum<BundlingConfigInitializer> implements RepositoryInitializer
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Field Summary
-
Fields inherited from interface org.apache.jackrabbit.oak.spi.lifecycle.RepositoryInitializer
DEFAULT
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
initialize(@NotNull NodeBuilder builder)
Initializes repository content.static BundlingConfigInitializer
valueOf(String name)
Returns the enum constant of this type with the specified name.static BundlingConfigInitializer[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE
public static final BundlingConfigInitializer INSTANCE
-
-
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 nameNullPointerException
- 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 interfaceRepositoryInitializer
- Parameters:
builder
- builder for accessing and modifying repository content
-
-