Enum ScopeExcludeReason
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum ScopeExcludeReason extends Enum<ScopeExcludeReason>
Possible reasons for excluding a scope.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<ScopeExcludeReason>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description BUILD_TOOL_OFThe scope only contains packages used for building source code which are not included in distributed build artifacts.
BUILD_DEPENDENCY_OFThe scope only contains packages used for building source code which are not included in distributed build.
DEV_DEPENDENCY_OFThe scope only contains packages used for development which are not included in distributed build.
DOCUMENTATION_DEPENDENCY_OFThe scope only contains packages used for building the documentation.
PROVIDED_BYThe scope only contains packages that have to be provided by the user of distributed build artifacts.
PROVIDED_DEPENDENCY_OFThe scope only contains packages that have to be provided by the user of distributed build artifacts.
TEST_TOOL_OFThe scope only contains packages used for testing source code which are not included in distributed build artifacts.
TEST_DEPENDENCY_OFThe scope only contains packages used for testing which are not included in distributed build.
RUNTIME_DEPENDENCY_OFThe scope only contains packages that have to be provided by the user during the execution of the artifacts but are not included in distributed build artifacts.
-
Method Summary
Modifier and Type Method Description final ScopeExcludeReasonvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<ScopeExcludeReason>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<ScopeExcludeReason>getEntries()Possible reasons for excluding a scope. -
-
Method Detail
-
valueOf
final ScopeExcludeReason valueOf(String value)
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.)
-
values
final Array<ScopeExcludeReason> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<ScopeExcludeReason> getEntries()
Possible reasons for excluding a scope.
-
-
-
-