public enum DataSourceVersion extends Enum<DataSourceVersion>
| Modifier and Type | Method and Description |
|---|---|
void |
updateOptionsMap(Map<String,String> optionsMap) |
static DataSourceVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataSourceVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSourceVersion V1
public static final DataSourceVersion V2
public static DataSourceVersion[] values()
for (DataSourceVersion c : DataSourceVersion.values()) System.out.println(c);
public static DataSourceVersion 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 © 2024. All rights reserved.