Enum PathExcludeReason
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum PathExcludeReason extends Enum<PathExcludeReason>
Possible reasons for excluding a path.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<PathExcludeReason>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description BUILD_TOOL_OFThe path only contains tools used for building source code which are not included in distributed build artifacts.
DATA_FILE_OFThe path only contains data files such as fonts or images which are not included in distributed build artifacts.
DOCUMENTATION_OFThe path only contains documentation which is not included in distributed build artifacts.
EXAMPLE_OFThe path only contains source code examples which are not included in distributed build artifacts.
OPTIONAL_COMPONENT_OFThe path only contains optional components for the code that is built which are not included in distributed build artifacts.
OTHERAny other reason which cannot be represented by any other element of PathExcludeReason.
PROVIDED_BYThe path only contains packages or sources for packages that have to be provided by the user of distributed build artifacts.
TEST_OFThe path only contains files used for testing source code which are not included in distributed build artifacts.
TEST_TOOL_OFThe path only contains tools used for testing source code which are not included in distributed build artifacts.
-
Method Summary
Modifier and Type Method Description final PathExcludeReasonvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<PathExcludeReason>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<PathExcludeReason>getEntries()Possible reasons for excluding a path. -
-
Method Detail
-
valueOf
final PathExcludeReason 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<PathExcludeReason> 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<PathExcludeReason> getEntries()
Possible reasons for excluding a path.
-
-
-
-