Enum DiscoverSchemaException.HandleErrorWith
java.lang.Object
java.lang.Enum<DiscoverSchemaException.HandleErrorWith>
org.talend.sdk.component.api.exception.DiscoverSchemaException.HandleErrorWith
- All Implemented Interfaces:
Serializable
,Comparable<DiscoverSchemaException.HandleErrorWith>
,java.lang.constant.Constable
- Enclosing class:
- DiscoverSchemaException
public static enum DiscoverSchemaException.HandleErrorWith
extends Enum<DiscoverSchemaException.HandleErrorWith>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptiondefault caseWill execute a lifecycle through framework using only configuration.Potentially execute a mock job in studio.unhandled.unhandled. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EXCEPTION
default case -
SILENT
unhandled. -
RETRY
unhandled. -
EXECUTE_MOCK_JOB
Potentially execute a mock job in studio. Will ask user's validation before executing. When specifying this option, developer should be sure that no side effect can be generated by connector. -
EXECUTE_LIFECYCLE
Will execute a lifecycle through framework using only configuration. This won't query for any user input. When specifying this option, developer should be sure that no side effect can be generated by connector.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-