Enum Class AutoDependenciesMode
- All Implemented Interfaces:
Serializable,Comparable<AutoDependenciesMode>,Constable
Automatically generate dependencies between content packages based on file order in CONGA configuration.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionGenerate a single dependency chain spanning both immutable and mutable content packages.Generate separate dependency chains for immutable and mutable content packages.Generate a dependency chain only for immutable content packages.Do not generate dependencies between content packages. -
Method Summary
Modifier and TypeMethodDescriptionstatic AutoDependenciesModeReturns the enum constant of this class with the specified name.static AutoDependenciesMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IMMUTABLE_MUTABLE_COMBINED
Generate a single dependency chain spanning both immutable and mutable content packages. -
IMMUTABLE_MUTABLE_SEPARATE
Generate separate dependency chains for immutable and mutable content packages. -
IMMUTABLE_ONLY
Generate a dependency chain only for immutable content packages. -
OFF
Do not generate dependencies between content packages.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-