public enum OracleVersion extends Enum<OracleVersion> implements io.debezium.config.EnumeratedValue
| Modifier and Type | Method and Description |
|---|---|
int |
getPosVersion() |
String |
getValue() |
static OracleVersion |
parse(String value) |
static OracleVersion |
parse(String value,
String defaultValue) |
static OracleVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OracleVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OracleVersion V11
public static final OracleVersion V12Plus
private final String version
public static OracleVersion[] values()
for (OracleVersion c : OracleVersion.values()) System.out.println(c);
public static OracleVersion 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 nullpublic String getValue()
getValue in interface io.debezium.config.EnumeratedValuepublic int getPosVersion()
public static OracleVersion parse(String value)
public static OracleVersion parse(String value, String defaultValue)
Copyright © 2020 JBoss by Red Hat. All rights reserved.