Package io.debezium.connector.binlog
Enum BinlogConnectorConfig.BigIntUnsignedHandlingMode
java.lang.Object
java.lang.Enum<BinlogConnectorConfig.BigIntUnsignedHandlingMode>
io.debezium.connector.binlog.BinlogConnectorConfig.BigIntUnsignedHandlingMode
- All Implemented Interfaces:
EnumeratedValue,Serializable,Comparable<BinlogConnectorConfig.BigIntUnsignedHandlingMode>
- Enclosing class:
- BinlogConnectorConfig
public static enum BinlogConnectorConfig.BigIntUnsignedHandlingMode
extends Enum<BinlogConnectorConfig.BigIntUnsignedHandlingMode>
implements EnumeratedValue
Set of predefined BigIntUnsignedHandlingMode options or aliases.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresentsBIGINT UNSIGNEDvalues as preciselongvalues.RepresentsBIGINT UNSIGNEDvalues as preciseBigDecimalvalues, which are represented in change events in binary form. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetValue()Determine if the supplied value is one of the predefined options.Determine if the supplied value is one of the predefined options.Returns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PRECISE
RepresentsBIGINT UNSIGNEDvalues as preciseBigDecimalvalues, which are represented in change events in binary form. This is precise but difficult to use. -
LONG
RepresentsBIGINT UNSIGNEDvalues as preciselongvalues. This may be less precise but is far easier to use.
-
-
Field Details
-
value
-
-
Constructor Details
-
BigIntUnsignedHandlingMode
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getValue
- Specified by:
getValuein interfaceEnumeratedValue
-
parse
Determine if the supplied value is one of the predefined options.- Parameters:
value- the configuration property value; may not be null- Returns:
- the matching option, or null if no match is found
-
parse
public static BinlogConnectorConfig.BigIntUnsignedHandlingMode parse(String value, String defaultValue) Determine if the supplied value is one of the predefined options.- Parameters:
value- the configuration property value; may not be nulldefaultValue- the default value; may be null- Returns:
- the matching option, or null if no match is found and the non-null default is invalid
-
asBigIntUnsignedMode
-