public static enum EtlProcess.EtlMode extends Enum<EtlProcess.EtlMode>
| Enum Constant and Description |
|---|
EMBEDDED
ETL engine embedded into third-party application.
|
INCLUDED
ETL engine included into other Toolsverse apps, such as Data
Explorer.
|
STANDALONE
ETL engine is a standalone application.
|
| Modifier and Type | Method and Description |
|---|---|
static EtlProcess.EtlMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EtlProcess.EtlMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EtlProcess.EtlMode INCLUDED
public static final EtlProcess.EtlMode STANDALONE
public static final EtlProcess.EtlMode EMBEDDED
public static EtlProcess.EtlMode[] values()
for (EtlProcess.EtlMode c : EtlProcess.EtlMode.values()) System.out.println(c);
public static EtlProcess.EtlMode 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 © 2010-2020 Toolsverse. All Rights Reserved.