public enum DatasourceType extends Enum<DatasourceType>
| Enum Constant and Description |
|---|
ELASTIC |
OPENSEARCH |
| Modifier and Type | Method and Description |
|---|---|
static DatasourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatasourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatasourceType ELASTIC
public static final DatasourceType OPENSEARCH
public static DatasourceType[] values()
for (DatasourceType c : DatasourceType.values()) System.out.println(c);
public static DatasourceType 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 © 2017. All Rights Reserved.