public enum IncludeSourceMode extends java.lang.Enum<IncludeSourceMode>
| Enum Constant and Description |
|---|
force
Always resolve target definitions as if the 'includeSources' attribute was set to 'true',
i.e.
|
honor
Honors the value of the 'includeSource' attribute in target definitions.
|
ignore
Always resolve target definitions as if the 'includeSources' attribute was set to 'false',
i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static IncludeSourceMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IncludeSourceMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IncludeSourceMode ignore
public static final IncludeSourceMode honor
public static final IncludeSourceMode force
public static IncludeSourceMode[] values()
for (IncludeSourceMode c : IncludeSourceMode.values()) System.out.println(c);
public static IncludeSourceMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null