Interface FetchRemoteBranchesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FetchRemoteBranchesResponse
,FetchRemoteBranchesResponse.Builder
public interface FetchRemoteBranchesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBranches(int index)
The remote repository's branch names.com.google.protobuf.ByteString
getBranchesBytes(int index)
The remote repository's branch names.int
getBranchesCount()
The remote repository's branch names.List<String>
getBranchesList()
The remote repository's branch names.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBranchesList
List<String> getBranchesList()
The remote repository's branch names.
repeated string branches = 1;
- Returns:
- A list containing the branches.
-
getBranchesCount
int getBranchesCount()
The remote repository's branch names.
repeated string branches = 1;
- Returns:
- The count of branches.
-
getBranches
String getBranches(int index)
The remote repository's branch names.
repeated string branches = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The branches at the given index.
-
getBranchesBytes
com.google.protobuf.ByteString getBranchesBytes(int index)
The remote repository's branch names.
repeated string branches = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the branches at the given index.
-
-