private static enum ConnectorOutputTest.ExecutionResult extends Enum<ConnectorOutputTest.ExecutionResult>
| Enum Constant and Description |
|---|
ERROR
The connector stopped after actual records did not match expected records.
|
EXCEPTION
The connector stopped after an unknown error or problem.
|
RESTART_REQUESTED
The connector stopped as requested in the expected results and is to be restarted.
|
STOPPED
The connector stopped as requested in the expected results.
|
| Modifier and Type | Method and Description |
|---|---|
static ConnectorOutputTest.ExecutionResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConnectorOutputTest.ExecutionResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectorOutputTest.ExecutionResult ERROR
public static final ConnectorOutputTest.ExecutionResult EXCEPTION
public static final ConnectorOutputTest.ExecutionResult STOPPED
public static final ConnectorOutputTest.ExecutionResult RESTART_REQUESTED
public static ConnectorOutputTest.ExecutionResult[] values()
for (ConnectorOutputTest.ExecutionResult c : ConnectorOutputTest.ExecutionResult.values()) System.out.println(c);
public static ConnectorOutputTest.ExecutionResult 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 JBoss by Red Hat. All rights reserved.