Interface Build.Attribute.SelectorOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
Build.Attribute.Selector,Build.Attribute.Selector.Builder
- Enclosing class:
- Build.Attribute
public static interface Build.Attribute.SelectorOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Build.Attribute.SelectorEntrygetEntries(int index)The list of (label, value) pairs in the map that defines the selector.intgetEntriesCount()The list of (label, value) pairs in the map that defines the selector.java.util.List<Build.Attribute.SelectorEntry>getEntriesList()The list of (label, value) pairs in the map that defines the selector.Build.Attribute.SelectorEntryOrBuildergetEntriesOrBuilder(int index)The list of (label, value) pairs in the map that defines the selector.java.util.List<? extends Build.Attribute.SelectorEntryOrBuilder>getEntriesOrBuilderList()The list of (label, value) pairs in the map that defines the selector.booleangetHasDefaultValue()Whether or not this has any default values.java.lang.StringgetNoMatchError()The error message when no condition matches.ByteStringgetNoMatchErrorBytes()The error message when no condition matches.booleanhasHasDefaultValue()Whether or not this has any default values.booleanhasNoMatchError()The error message when no condition matches.-
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntriesList
java.util.List<Build.Attribute.SelectorEntry> getEntriesList()
The list of (label, value) pairs in the map that defines the selector. At this time, this cannot be empty, i.e. a selector has at least one entry.
repeated .blaze_query.Attribute.SelectorEntry entries = 1;
-
getEntries
Build.Attribute.SelectorEntry getEntries(int index)
The list of (label, value) pairs in the map that defines the selector. At this time, this cannot be empty, i.e. a selector has at least one entry.
repeated .blaze_query.Attribute.SelectorEntry entries = 1;
-
getEntriesCount
int getEntriesCount()
The list of (label, value) pairs in the map that defines the selector. At this time, this cannot be empty, i.e. a selector has at least one entry.
repeated .blaze_query.Attribute.SelectorEntry entries = 1;
-
getEntriesOrBuilderList
java.util.List<? extends Build.Attribute.SelectorEntryOrBuilder> getEntriesOrBuilderList()
The list of (label, value) pairs in the map that defines the selector. At this time, this cannot be empty, i.e. a selector has at least one entry.
repeated .blaze_query.Attribute.SelectorEntry entries = 1;
-
getEntriesOrBuilder
Build.Attribute.SelectorEntryOrBuilder getEntriesOrBuilder(int index)
The list of (label, value) pairs in the map that defines the selector. At this time, this cannot be empty, i.e. a selector has at least one entry.
repeated .blaze_query.Attribute.SelectorEntry entries = 1;
-
hasHasDefaultValue
boolean hasHasDefaultValue()
Whether or not this has any default values.
optional bool has_default_value = 2;- Returns:
- Whether the hasDefaultValue field is set.
-
getHasDefaultValue
boolean getHasDefaultValue()
Whether or not this has any default values.
optional bool has_default_value = 2;- Returns:
- The hasDefaultValue.
-
hasNoMatchError
boolean hasNoMatchError()
The error message when no condition matches.
optional string no_match_error = 3;- Returns:
- Whether the noMatchError field is set.
-
getNoMatchError
java.lang.String getNoMatchError()
The error message when no condition matches.
optional string no_match_error = 3;- Returns:
- The noMatchError.
-
getNoMatchErrorBytes
ByteString getNoMatchErrorBytes()
The error message when no condition matches.
optional string no_match_error = 3;- Returns:
- The bytes for noMatchError.
-
-