public enum IncludeSourceMode extends 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(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(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 nullCopyright © 2008–2021 Eclipse Foundation. All rights reserved.