Package io.helidon.build.devloop
Enum DirectoryType
- All Implemented Interfaces:
Serializable,Comparable<DirectoryType>
A directory type.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBuild output root (e.g.Custom.Dependencies.Java classes.Java source files.Project root.Resource files. -
Method Summary
Modifier and TypeMethodDescriptionstatic DirectoryTypeReturns the enum constant of this type with the specified name.static DirectoryType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
Project
Project root. -
JavaSources
Java source files. -
Resources
Resource files. -
BuildRoot
Build output root (e.g. "target"). -
JavaClasses
Java classes. -
Depencencies
Dependencies. -
Custom
Custom.
-
-
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
-