public static enum YangSourceContextResolver.ResolutionState extends Enum<YangSourceContextResolver.ResolutionState>
| Enum Constant and Description |
|---|
EVERYTHING_OK
Source, its dependencies and its transient dependencies
are resolved.
|
MISSING_DEPENDENCY
One or multiple of dependencies of source are missing
|
MISSING_SOURCE
Source was missing during source resolution
|
OTHER_ERROR
Other error ocurred during resolution
|
| Modifier and Type | Method and Description |
|---|---|
static YangSourceContextResolver.ResolutionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static YangSourceContextResolver.ResolutionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final YangSourceContextResolver.ResolutionState MISSING_SOURCE
public static final YangSourceContextResolver.ResolutionState MISSING_DEPENDENCY
public static final YangSourceContextResolver.ResolutionState OTHER_ERROR
public static final YangSourceContextResolver.ResolutionState EVERYTHING_OK
public static YangSourceContextResolver.ResolutionState[] values()
for (YangSourceContextResolver.ResolutionState c : YangSourceContextResolver.ResolutionState.values()) System.out.println(c);
public static YangSourceContextResolver.ResolutionState 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. All rights reserved.