Interface Build.EnvironmentGroupOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
Build.EnvironmentGroup,Build.EnvironmentGroup.Builder
- Enclosing class:
- Build
public static interface Build.EnvironmentGroupOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDefault(int index)The member environments that rules implicitly support if not otherwise specified.ByteStringgetDefaultBytes(int index)The member environments that rules implicitly support if not otherwise specified.intgetDefaultCount()The member environments that rules implicitly support if not otherwise specified.java.util.List<java.lang.String>getDefaultList()The member environments that rules implicitly support if not otherwise specified.java.lang.StringgetEnvironment(int index)The environments that belong to this group (as labels).ByteStringgetEnvironmentBytes(int index)The environments that belong to this group (as labels).intgetEnvironmentCount()The environments that belong to this group (as labels).java.util.List<java.lang.String>getEnvironmentList()The environments that belong to this group (as labels).java.lang.StringgetName()The name of the environment group.ByteStringgetNameBytes()The name of the environment group.booleanhasName()The name of the environment group.-
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
-
hasName
boolean hasName()
The name of the environment group.
required string name = 1;- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
The name of the environment group.
required string name = 1;- Returns:
- The name.
-
getNameBytes
ByteString getNameBytes()
The name of the environment group.
required string name = 1;- Returns:
- The bytes for name.
-
getEnvironmentList
java.util.List<java.lang.String> getEnvironmentList()
The environments that belong to this group (as labels).
repeated string environment = 2;- Returns:
- A list containing the environment.
-
getEnvironmentCount
int getEnvironmentCount()
The environments that belong to this group (as labels).
repeated string environment = 2;- Returns:
- The count of environment.
-
getEnvironment
java.lang.String getEnvironment(int index)
The environments that belong to this group (as labels).
repeated string environment = 2;- Parameters:
index- The index of the element to return.- Returns:
- The environment at the given index.
-
getEnvironmentBytes
ByteString getEnvironmentBytes(int index)
The environments that belong to this group (as labels).
repeated string environment = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the environment at the given index.
-
getDefaultList
java.util.List<java.lang.String> getDefaultList()
The member environments that rules implicitly support if not otherwise specified.
repeated string default = 3;- Returns:
- A list containing the default.
-
getDefaultCount
int getDefaultCount()
The member environments that rules implicitly support if not otherwise specified.
repeated string default = 3;- Returns:
- The count of default.
-
getDefault
java.lang.String getDefault(int index)
The member environments that rules implicitly support if not otherwise specified.
repeated string default = 3;- Parameters:
index- The index of the element to return.- Returns:
- The default at the given index.
-
getDefaultBytes
ByteString getDefaultBytes(int index)
The member environments that rules implicitly support if not otherwise specified.
repeated string default = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the default at the given index.
-
-