public static enum SelectorResolutionResult.Status extends Enum<SelectorResolutionResult.Status>
DiscoverySelector
.Enum Constant and Description |
---|
FAILED
Indicates that the
TestEngine has encountered an error while
resolving the selector. |
RESOLVED
Indicates that the
TestEngine has successfully resolved the
selector. |
UNRESOLVED
Indicates that the
TestEngine was unable to resolve the
selector. |
Modifier and Type | Method and Description |
---|---|
static SelectorResolutionResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelectorResolutionResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectorResolutionResult.Status RESOLVED
TestEngine
has successfully resolved the
selector.public static final SelectorResolutionResult.Status UNRESOLVED
TestEngine
was unable to resolve the
selector.public static final SelectorResolutionResult.Status FAILED
TestEngine
has encountered an error while
resolving the selector.public static SelectorResolutionResult.Status[] values()
for (SelectorResolutionResult.Status c : SelectorResolutionResult.Status.values()) System.out.println(c);
public static SelectorResolutionResult.Status 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 © 2020. All rights reserved.