public static enum ComponentVerifier.Scope extends Enum<ComponentVerifier.Scope>
| Enum Constant and Description |
|---|
CONNECTIVITY
Reach out to the backend and verify that a connection can be established.
|
PARAMETERS
Only validate the parameters for their syntactic soundness.
|
| Modifier and Type | Method and Description |
|---|---|
static ComponentVerifier.Scope |
fromString(String scope)
Get an instance of this scope from a string representation
|
static ComponentVerifier.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentVerifier.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentVerifier.Scope PARAMETERS
public static final ComponentVerifier.Scope CONNECTIVITY
public static ComponentVerifier.Scope[] values()
for (ComponentVerifier.Scope c : ComponentVerifier.Scope.values()) System.out.println(c);
public static ComponentVerifier.Scope 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 nullpublic static ComponentVerifier.Scope fromString(String scope)
scope - the scope as string, which can be in any caseApache Camel