Package com.google.cloud.clouddms.v1
Interface SourceNumericFilterOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SourceNumericFilter
,SourceNumericFilter.Builder
public interface SourceNumericFilterOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumericFilterOption
getNumericFilterOption()
Required.int
getNumericFilterOptionValue()
Required.int
getSourceMaxPrecisionFilter()
Optional.int
getSourceMaxScaleFilter()
Optional.int
getSourceMinPrecisionFilter()
Optional.int
getSourceMinScaleFilter()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSourceMinScaleFilter
int getSourceMinScaleFilter()
Optional. The filter will match columns with scale greater than or equal to this number.
int32 source_min_scale_filter = 1 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The sourceMinScaleFilter.
-
getSourceMaxScaleFilter
int getSourceMaxScaleFilter()
Optional. The filter will match columns with scale smaller than or equal to this number.
int32 source_max_scale_filter = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The sourceMaxScaleFilter.
-
getSourceMinPrecisionFilter
int getSourceMinPrecisionFilter()
Optional. The filter will match columns with precision greater than or equal to this number.
int32 source_min_precision_filter = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The sourceMinPrecisionFilter.
-
getSourceMaxPrecisionFilter
int getSourceMaxPrecisionFilter()
Optional. The filter will match columns with precision smaller than or equal to this number.
int32 source_max_precision_filter = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The sourceMaxPrecisionFilter.
-
getNumericFilterOptionValue
int getNumericFilterOptionValue()
Required. Enum to set the option defining the datatypes numeric filter has to be applied to
.google.cloud.clouddms.v1.NumericFilterOption numeric_filter_option = 5 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The enum numeric value on the wire for numericFilterOption.
-
getNumericFilterOption
NumericFilterOption getNumericFilterOption()
Required. Enum to set the option defining the datatypes numeric filter has to be applied to
.google.cloud.clouddms.v1.NumericFilterOption numeric_filter_option = 5 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The numericFilterOption.
-
-