Interface UserListStringRuleItemInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UserListStringRuleItemInfo,UserListStringRuleItemInfo.Builder
public interface UserListStringRuleItemInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperatorgetOperator()String comparison operator.intgetOperatorValue()String comparison operator.java.lang.StringgetValue()The right hand side of the string rule item.com.google.protobuf.ByteStringgetValueBytes()The right hand side of the string rule item.booleanhasValue()The right hand side of the string rule item.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOperatorValue
int getOperatorValue()
String comparison operator. This field is required and must be populated when creating a new string rule item.
.google.ads.googleads.v10.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator operator = 1;- Returns:
- The enum numeric value on the wire for operator.
-
getOperator
UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator getOperator()
String comparison operator. This field is required and must be populated when creating a new string rule item.
.google.ads.googleads.v10.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator operator = 1;- Returns:
- The operator.
-
hasValue
boolean hasValue()
The right hand side of the string rule item. For URLs or referrer URLs, the value can not contain illegal URL chars such as newlines, quotes, tabs, or parentheses. This field is required and must be populated when creating a new string rule item.
optional string value = 3;- Returns:
- Whether the value field is set.
-
getValue
java.lang.String getValue()
The right hand side of the string rule item. For URLs or referrer URLs, the value can not contain illegal URL chars such as newlines, quotes, tabs, or parentheses. This field is required and must be populated when creating a new string rule item.
optional string value = 3;- Returns:
- The value.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes()
The right hand side of the string rule item. For URLs or referrer URLs, the value can not contain illegal URL chars such as newlines, quotes, tabs, or parentheses. This field is required and must be populated when creating a new string rule item.
optional string value = 3;- Returns:
- The bytes for value.
-
-