Package feast.proto.core
Interface CoreServiceProto.ListProjectsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CoreServiceProto.ListProjectsResponse,CoreServiceProto.ListProjectsResponse.Builder
- Enclosing class:
- CoreServiceProto
public static interface CoreServiceProto.ListProjectsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetProjects(int index)List of project names (archived projects are filtered out)com.google.protobuf.ByteStringgetProjectsBytes(int index)List of project names (archived projects are filtered out)intgetProjectsCount()List of project names (archived projects are filtered out)List<String>getProjectsList()List of project names (archived projects are filtered out)-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProjectsList
List<String> getProjectsList()
List of project names (archived projects are filtered out)
repeated string projects = 1;- Returns:
- A list containing the projects.
-
getProjectsCount
int getProjectsCount()
List of project names (archived projects are filtered out)
repeated string projects = 1;- Returns:
- The count of projects.
-
getProjects
String getProjects(int index)
List of project names (archived projects are filtered out)
repeated string projects = 1;- Parameters:
index- The index of the element to return.- Returns:
- The projects at the given index.
-
getProjectsBytes
com.google.protobuf.ByteString getProjectsBytes(int index)
List of project names (archived projects are filtered out)
repeated string projects = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the projects at the given index.
-
-