public static enum ExportFileDescription.Mode extends Enum<ExportFileDescription.Mode>
Enum Constant and Description |
---|
COPY
Create and export a copy of the wrapped
SourcePath (incurring the cost of copying and
caching this copy at build time). |
REFERENCE
Forward the wrapped
SourcePath reference without any build time overhead (e.g. |
Modifier and Type | Method and Description |
---|---|
static ExportFileDescription.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExportFileDescription.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportFileDescription.Mode REFERENCE
SourcePath
reference without any build time overhead (e.g.
copying, caching, etc).public static final ExportFileDescription.Mode COPY
SourcePath
(incurring the cost of copying and
caching this copy at build time).public static ExportFileDescription.Mode[] values()
for (ExportFileDescription.Mode c : ExportFileDescription.Mode.values()) System.out.println(c);
public static ExportFileDescription.Mode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null