Package com.google.privacy.dlp.v2
Interface RecordCondition.ExpressionsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RecordCondition.Expressions
,RecordCondition.Expressions.Builder
- Enclosing class:
- RecordCondition
public static interface RecordCondition.ExpressionsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecordCondition.Conditions
getConditions()
Conditions to apply to the expression.RecordCondition.ConditionsOrBuilder
getConditionsOrBuilder()
Conditions to apply to the expression.RecordCondition.Expressions.LogicalOperator
getLogicalOperator()
The operator to apply to the result of conditions.int
getLogicalOperatorValue()
The operator to apply to the result of conditions.RecordCondition.Expressions.TypeCase
getTypeCase()
boolean
hasConditions()
Conditions to apply to the expression.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLogicalOperatorValue
int getLogicalOperatorValue()
The operator to apply to the result of conditions. Default and currently only supported value is `AND`.
.google.privacy.dlp.v2.RecordCondition.Expressions.LogicalOperator logical_operator = 1;
- Returns:
- The enum numeric value on the wire for logicalOperator.
-
getLogicalOperator
RecordCondition.Expressions.LogicalOperator getLogicalOperator()
The operator to apply to the result of conditions. Default and currently only supported value is `AND`.
.google.privacy.dlp.v2.RecordCondition.Expressions.LogicalOperator logical_operator = 1;
- Returns:
- The logicalOperator.
-
hasConditions
boolean hasConditions()
Conditions to apply to the expression.
.google.privacy.dlp.v2.RecordCondition.Conditions conditions = 3;
- Returns:
- Whether the conditions field is set.
-
getConditions
RecordCondition.Conditions getConditions()
Conditions to apply to the expression.
.google.privacy.dlp.v2.RecordCondition.Conditions conditions = 3;
- Returns:
- The conditions.
-
getConditionsOrBuilder
RecordCondition.ConditionsOrBuilder getConditionsOrBuilder()
Conditions to apply to the expression.
.google.privacy.dlp.v2.RecordCondition.Conditions conditions = 3;
-
getTypeCase
RecordCondition.Expressions.TypeCase getTypeCase()
-
-