Enum ProjectExportSpec.DependencyInclusionStrategy
java.lang.Object
java.lang.Enum<ProjectExportSpec.DependencyInclusionStrategy>
de.xima.fc.project.mgmt.impex.ProjectExportSpec.DependencyInclusionStrategy
- All Implemented Interfaces:
Serializable, Comparable<ProjectExportSpec.DependencyInclusionStrategy>
- Enclosing class:
ProjectExportSpec
public static enum ProjectExportSpec.DependencyInclusionStrategy
extends Enum<ProjectExportSpec.DependencyInclusionStrategy>
- Since:
- 20.11.25
- Author:
- Norman Lorenz
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInclude all dependencies of the project, regardless of whether they are specified in the export specification.Include only the dependencies explicitly specified in the export specification. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ONLY_SPECIFIED
Include only the dependencies explicitly specified in the export specification. -
ALL_DEPENDENCIES
Include all dependencies of the project, regardless of whether they are specified in the export specification.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-