Interface Build.PackageGroupOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Build.PackageGroup,Build.PackageGroup.Builder
- Enclosing class:
- Build
public static interface Build.PackageGroupOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetContainedPackage(int index) The list of packages as specified in the BUILD file.com.google.protobuf.ByteStringgetContainedPackageBytes(int index) The list of packages as specified in the BUILD file.intThe list of packages as specified in the BUILD file.The list of packages as specified in the BUILD file.getIncludedPackageGroup(int index) The list of sub package groups included in this one.com.google.protobuf.ByteStringgetIncludedPackageGroupBytes(int index) The list of sub package groups included in this one.intThe list of sub package groups included in this one.The list of sub package groups included in this one.getName()The name of the package groupcom.google.protobuf.ByteStringThe name of the package groupbooleanhasName()The name of the package groupMethods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasName
boolean hasName()The name of the package group
required string name = 1;- Returns:
- Whether the name field is set.
-
getName
String getName()The name of the package group
required string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()The name of the package group
required string name = 1;- Returns:
- The bytes for name.
-
getContainedPackageList
The list of packages as specified in the BUILD file. Currently this is only a list of packages, but some time in the future, there might be some type of wildcard mechanism.
repeated string contained_package = 2;- Returns:
- A list containing the containedPackage.
-
getContainedPackageCount
int getContainedPackageCount()The list of packages as specified in the BUILD file. Currently this is only a list of packages, but some time in the future, there might be some type of wildcard mechanism.
repeated string contained_package = 2;- Returns:
- The count of containedPackage.
-
getContainedPackage
The list of packages as specified in the BUILD file. Currently this is only a list of packages, but some time in the future, there might be some type of wildcard mechanism.
repeated string contained_package = 2;- Parameters:
index- The index of the element to return.- Returns:
- The containedPackage at the given index.
-
getContainedPackageBytes
com.google.protobuf.ByteString getContainedPackageBytes(int index) The list of packages as specified in the BUILD file. Currently this is only a list of packages, but some time in the future, there might be some type of wildcard mechanism.
repeated string contained_package = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the containedPackage at the given index.
-
getIncludedPackageGroupList
The list of sub package groups included in this one.
repeated string included_package_group = 3;- Returns:
- A list containing the includedPackageGroup.
-
getIncludedPackageGroupCount
int getIncludedPackageGroupCount()The list of sub package groups included in this one.
repeated string included_package_group = 3;- Returns:
- The count of includedPackageGroup.
-
getIncludedPackageGroup
The list of sub package groups included in this one.
repeated string included_package_group = 3;- Parameters:
index- The index of the element to return.- Returns:
- The includedPackageGroup at the given index.
-
getIncludedPackageGroupBytes
com.google.protobuf.ByteString getIncludedPackageGroupBytes(int index) The list of sub package groups included in this one.
repeated string included_package_group = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the includedPackageGroup at the given index.
-