Interface Build.Attribute.SelectorListOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
Build.Attribute.SelectorList,Build.Attribute.SelectorList.Builder
- Enclosing class:
- Build.Attribute
public static interface Build.Attribute.SelectorListOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Build.Attribute.SelectorgetElements(int index)The list of selector elements in this selector list.intgetElementsCount()The list of selector elements in this selector list.java.util.List<Build.Attribute.Selector>getElementsList()The list of selector elements in this selector list.Build.Attribute.SelectorOrBuildergetElementsOrBuilder(int index)The list of selector elements in this selector list.java.util.List<? extends Build.Attribute.SelectorOrBuilder>getElementsOrBuilderList()The list of selector elements in this selector list.Build.Attribute.DiscriminatorgetType()The type that this selector list evaluates to, and the type that each selector in the list evaluates to.booleanhasType()The type that this selector list evaluates to, and the type that each selector in the list evaluates to.-
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
-
hasType
boolean hasType()
The type that this selector list evaluates to, and the type that each selector in the list evaluates to. At this time, this cannot be SELECTOR_LIST, i.e. selector lists do not nest.
optional .blaze_query.Attribute.Discriminator type = 1;- Returns:
- Whether the type field is set.
-
getType
Build.Attribute.Discriminator getType()
The type that this selector list evaluates to, and the type that each selector in the list evaluates to. At this time, this cannot be SELECTOR_LIST, i.e. selector lists do not nest.
optional .blaze_query.Attribute.Discriminator type = 1;- Returns:
- The type.
-
getElementsList
java.util.List<Build.Attribute.Selector> getElementsList()
The list of selector elements in this selector list. At this time, this cannot be empty, i.e. a selector list is never empty.
repeated .blaze_query.Attribute.Selector elements = 2;
-
getElements
Build.Attribute.Selector getElements(int index)
The list of selector elements in this selector list. At this time, this cannot be empty, i.e. a selector list is never empty.
repeated .blaze_query.Attribute.Selector elements = 2;
-
getElementsCount
int getElementsCount()
The list of selector elements in this selector list. At this time, this cannot be empty, i.e. a selector list is never empty.
repeated .blaze_query.Attribute.Selector elements = 2;
-
getElementsOrBuilderList
java.util.List<? extends Build.Attribute.SelectorOrBuilder> getElementsOrBuilderList()
The list of selector elements in this selector list. At this time, this cannot be empty, i.e. a selector list is never empty.
repeated .blaze_query.Attribute.Selector elements = 2;
-
getElementsOrBuilder
Build.Attribute.SelectorOrBuilder getElementsOrBuilder(int index)
The list of selector elements in this selector list. At this time, this cannot be empty, i.e. a selector list is never empty.
repeated .blaze_query.Attribute.Selector elements = 2;
-
-