Package io.debezium.connector.oracle
Enum OracleDefaultValueIT.AssertionType
- java.lang.Object
-
- java.lang.Enum<OracleDefaultValueIT.AssertionType>
-
- io.debezium.connector.oracle.OracleDefaultValueIT.AssertionType
-
- All Implemented Interfaces:
Serializable,Comparable<OracleDefaultValueIT.AssertionType>
- Enclosing class:
- OracleDefaultValueIT
static enum OracleDefaultValueIT.AssertionType extends Enum<OracleDefaultValueIT.AssertionType>
Defines the different assertion types for a given column definition.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FIELD_DEFAULT_EQUALFIELD_NO_DEFAULT
-
Constructor Summary
Constructors Modifier Constructor Description privateAssertionType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OracleDefaultValueIT.AssertionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OracleDefaultValueIT.AssertionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FIELD_DEFAULT_EQUAL
public static final OracleDefaultValueIT.AssertionType FIELD_DEFAULT_EQUAL
-
FIELD_NO_DEFAULT
public static final OracleDefaultValueIT.AssertionType FIELD_NO_DEFAULT
-
-
Method Detail
-
values
public static OracleDefaultValueIT.AssertionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OracleDefaultValueIT.AssertionType c : OracleDefaultValueIT.AssertionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OracleDefaultValueIT.AssertionType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-