Interface Build.PackageGroupOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder,MessageOrBuilder
- All Known Implementing Classes:
Build.PackageGroup,Build.PackageGroup.Builder
- Enclosing class:
- Build
public static interface Build.PackageGroupOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetContainedPackage(int index)The list of packages as specified in the BUILD file.ByteStringgetContainedPackageBytes(int index)The list of packages as specified in the BUILD file.intgetContainedPackageCount()The list of packages as specified in the BUILD file.java.util.List<java.lang.String>getContainedPackageList()The list of packages as specified in the BUILD file.java.lang.StringgetIncludedPackageGroup(int index)The list of sub package groups included in this one.ByteStringgetIncludedPackageGroupBytes(int index)The list of sub package groups included in this one.intgetIncludedPackageGroupCount()The list of sub package groups included in this one.java.util.List<java.lang.String>getIncludedPackageGroupList()The list of sub package groups included in this one.java.lang.StringgetName()The name of the package groupByteStringgetNameBytes()The name of the package groupbooleanhasName()The name of the package 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 package group
required string name = 1;- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
The name of the package group
required string name = 1;- Returns:
- The name.
-
getNameBytes
ByteString getNameBytes()
The name of the package group
required string name = 1;- Returns:
- The bytes for name.
-
getContainedPackageList
java.util.List<java.lang.String> 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
java.lang.String getContainedPackage(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 element to return.- Returns:
- The containedPackage at the given index.
-
getContainedPackageBytes
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
java.util.List<java.lang.String> 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
java.lang.String getIncludedPackageGroup(int index)
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
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.
-
-