enum DatabaseVersion extends Enum<DatabaseVersion>
| Enum Constant and Description |
|---|
UNKNOWN |
VERSION_1_4 |
VERSION_2_1 |
VERSION_2_2 |
| Modifier and Type | Field and Description |
|---|---|
private Driver |
driver |
private int |
formatVersion |
private String |
packageName |
private boolean |
repackagingRequired |
private String |
version |
| Modifier and Type | Method and Description |
|---|---|
(package private) Driver |
getDriver() |
(package private) int |
getFormatVersion() |
(package private) String |
getPackageName() |
(package private) String |
getVersion() |
(package private) boolean |
isRepackagingRequired() |
static DatabaseVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseVersion UNKNOWN
public static final DatabaseVersion VERSION_1_4
public static final DatabaseVersion VERSION_2_1
public static final DatabaseVersion VERSION_2_2
private final String version
private final int formatVersion
private final Driver driver
private final String packageName
private final boolean repackagingRequired
public static DatabaseVersion[] values()
for (DatabaseVersion c : DatabaseVersion.values()) System.out.println(c);
public static DatabaseVersion 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 nullString getVersion()
int getFormatVersion()
boolean isRepackagingRequired()
String getPackageName()
Driver getDriver()
Copyright © 2024 Apache NiFi Project. All rights reserved.