Package com.google.cloud.dataplex.v1
Enum DataQualityRule.RuleTypeCase
- java.lang.Object
-
- java.lang.Enum<DataQualityRule.RuleTypeCase>
-
- com.google.cloud.dataplex.v1.DataQualityRule.RuleTypeCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<DataQualityRule.RuleTypeCase>
- Enclosing class:
- DataQualityRule
public static enum DataQualityRule.RuleTypeCase extends Enum<DataQualityRule.RuleTypeCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NON_NULL_EXPECTATION
RANGE_EXPECTATION
REGEX_EXPECTATION
ROW_CONDITION_EXPECTATION
RULETYPE_NOT_SET
SET_EXPECTATION
STATISTIC_RANGE_EXPECTATION
TABLE_CONDITION_EXPECTATION
UNIQUENESS_EXPECTATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DataQualityRule.RuleTypeCase
forNumber(int value)
int
getNumber()
static DataQualityRule.RuleTypeCase
valueOf(int value)
Deprecated.static DataQualityRule.RuleTypeCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataQualityRule.RuleTypeCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RANGE_EXPECTATION
public static final DataQualityRule.RuleTypeCase RANGE_EXPECTATION
-
NON_NULL_EXPECTATION
public static final DataQualityRule.RuleTypeCase NON_NULL_EXPECTATION
-
SET_EXPECTATION
public static final DataQualityRule.RuleTypeCase SET_EXPECTATION
-
REGEX_EXPECTATION
public static final DataQualityRule.RuleTypeCase REGEX_EXPECTATION
-
UNIQUENESS_EXPECTATION
public static final DataQualityRule.RuleTypeCase UNIQUENESS_EXPECTATION
-
STATISTIC_RANGE_EXPECTATION
public static final DataQualityRule.RuleTypeCase STATISTIC_RANGE_EXPECTATION
-
ROW_CONDITION_EXPECTATION
public static final DataQualityRule.RuleTypeCase ROW_CONDITION_EXPECTATION
-
TABLE_CONDITION_EXPECTATION
public static final DataQualityRule.RuleTypeCase TABLE_CONDITION_EXPECTATION
-
RULETYPE_NOT_SET
public static final DataQualityRule.RuleTypeCase RULETYPE_NOT_SET
-
-
Method Detail
-
values
public static DataQualityRule.RuleTypeCase[] 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 (DataQualityRule.RuleTypeCase c : DataQualityRule.RuleTypeCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataQualityRule.RuleTypeCase 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
-
valueOf
@Deprecated public static DataQualityRule.RuleTypeCase valueOf(int value)
Deprecated.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:
value
- 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
-
forNumber
public static DataQualityRule.RuleTypeCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-