public static enum Destination.DestinationType extends Enum<Destination.DestinationType>
| Enum Constant and Description |
|---|
HDFS |
KAFKA |
MYSQL |
POSTGRES |
TERADATA |
| Modifier and Type | Method and Description |
|---|---|
static Destination.DestinationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Destination.DestinationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Destination.DestinationType HDFS
public static final Destination.DestinationType KAFKA
public static final Destination.DestinationType MYSQL
public static final Destination.DestinationType TERADATA
public static final Destination.DestinationType POSTGRES
public static Destination.DestinationType[] values()
for (Destination.DestinationType c : Destination.DestinationType.values()) System.out.println(c);
public static Destination.DestinationType 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 null