public static enum YamlProcessor.ResolutionMethod extends Enum<YamlProcessor.ResolutionMethod>
Enum Constant and Description |
---|
FIRST_FOUND
Take the first resource in the list that exists and use just that.
|
OVERRIDE
Replace values from earlier in the list.
|
OVERRIDE_AND_IGNORE
Replace values from earlier in the list, ignoring any failures.
|
Modifier and Type | Method and Description |
---|---|
static YamlProcessor.ResolutionMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YamlProcessor.ResolutionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YamlProcessor.ResolutionMethod OVERRIDE
public static final YamlProcessor.ResolutionMethod OVERRIDE_AND_IGNORE
public static final YamlProcessor.ResolutionMethod FIRST_FOUND
public static YamlProcessor.ResolutionMethod[] values()
for (YamlProcessor.ResolutionMethod c : YamlProcessor.ResolutionMethod.values()) System.out.println(c);
public static YamlProcessor.ResolutionMethod 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 © 2014 Pivotal Software, Inc.. All rights reserved.