public static enum ETLRunContext.RunMode extends java.lang.Enum<ETLRunContext.RunMode>
| Enum Constant and Description |
|---|
BACKGROUND
Process all rows
|
PREVIEW
Preview mode, processes limited rows
|
| Modifier and Type | Method and Description |
|---|---|
static ETLRunContext.RunMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ETLRunContext.RunMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETLRunContext.RunMode PREVIEW
public static final ETLRunContext.RunMode BACKGROUND
public static ETLRunContext.RunMode[] values()
for (ETLRunContext.RunMode c : ETLRunContext.RunMode.values()) System.out.println(c);
public static ETLRunContext.RunMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null