Package com.google.cloud.dataplex.v1
Enum DataQualityScanRuleResult.EvaluationType
- java.lang.Object
-
- java.lang.Enum<DataQualityScanRuleResult.EvaluationType>
-
- com.google.cloud.dataplex.v1.DataQualityScanRuleResult.EvaluationType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,com.google.protobuf.ProtocolMessageEnum
,Serializable
,Comparable<DataQualityScanRuleResult.EvaluationType>
- Enclosing class:
- DataQualityScanRuleResult
public static enum DataQualityScanRuleResult.EvaluationType extends Enum<DataQualityScanRuleResult.EvaluationType> implements com.google.protobuf.ProtocolMessageEnum
The evaluation type of the data quality rule.
Protobuf enumgoogle.cloud.dataplex.v1.DataQualityScanRuleResult.EvaluationType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGGREGATE
The rule evaluation is done for an aggregate of rows.EVALUATION_TYPE_UNSPECIFIED
An unspecified evaluation type.PER_ROW
The rule evaluation is done at per row level.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static int
AGGREGATE_VALUE
The rule evaluation is done for an aggregate of rows.static int
EVALUATION_TYPE_UNSPECIFIED_VALUE
An unspecified evaluation type.static int
PER_ROW_VALUE
The rule evaluation is done at per row level.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DataQualityScanRuleResult.EvaluationType
forNumber(int value)
static com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor()
com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType()
int
getNumber()
com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor()
static com.google.protobuf.Internal.EnumLiteMap<DataQualityScanRuleResult.EvaluationType>
internalGetValueMap()
static DataQualityScanRuleResult.EvaluationType
valueOf(int value)
Deprecated.static DataQualityScanRuleResult.EvaluationType
valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name.static DataQualityScanRuleResult.EvaluationType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataQualityScanRuleResult.EvaluationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVALUATION_TYPE_UNSPECIFIED
public static final DataQualityScanRuleResult.EvaluationType EVALUATION_TYPE_UNSPECIFIED
An unspecified evaluation type.
EVALUATION_TYPE_UNSPECIFIED = 0;
-
PER_ROW
public static final DataQualityScanRuleResult.EvaluationType PER_ROW
The rule evaluation is done at per row level.
PER_ROW = 1;
-
AGGREGATE
public static final DataQualityScanRuleResult.EvaluationType AGGREGATE
The rule evaluation is done for an aggregate of rows.
AGGREGATE = 2;
-
UNRECOGNIZED
public static final DataQualityScanRuleResult.EvaluationType UNRECOGNIZED
-
-
Field Detail
-
EVALUATION_TYPE_UNSPECIFIED_VALUE
public static final int EVALUATION_TYPE_UNSPECIFIED_VALUE
An unspecified evaluation type.
EVALUATION_TYPE_UNSPECIFIED = 0;
- See Also:
- Constant Field Values
-
PER_ROW_VALUE
public static final int PER_ROW_VALUE
The rule evaluation is done at per row level.
PER_ROW = 1;
- See Also:
- Constant Field Values
-
AGGREGATE_VALUE
public static final int AGGREGATE_VALUE
The rule evaluation is done for an aggregate of rows.
AGGREGATE = 2;
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static DataQualityScanRuleResult.EvaluationType[] 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 (DataQualityScanRuleResult.EvaluationType c : DataQualityScanRuleResult.EvaluationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataQualityScanRuleResult.EvaluationType 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
-
getNumber
public final int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
- Specified by:
getNumber
in interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static DataQualityScanRuleResult.EvaluationType 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 DataQualityScanRuleResult.EvaluationType forNumber(int value)
- Parameters:
value
- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<DataQualityScanRuleResult.EvaluationType> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptor
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForType
in interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static DataQualityScanRuleResult.EvaluationType valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc
- 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
-
-