public static enum ComponentVerifierExtension.Result.Status extends Enum<ComponentVerifierExtension.Result.Status>
Enum Constant and Description |
---|
ERROR
Error occurred during the verification
|
OK
Verification succeeded
|
UNSUPPORTED
Verification is not supported.
|
Modifier and Type | Method and Description |
---|---|
static ComponentVerifierExtension.Result.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentVerifierExtension.Result.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentVerifierExtension.Result.Status OK
public static final ComponentVerifierExtension.Result.Status ERROR
public static final ComponentVerifierExtension.Result.Status UNSUPPORTED
public static ComponentVerifierExtension.Result.Status[] values()
for (ComponentVerifierExtension.Result.Status c : ComponentVerifierExtension.Result.Status.values()) System.out.println(c);
public static ComponentVerifierExtension.Result.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 nullApache Camel