Package org.mlflow.api.proto
Interface ModelRegistry.GetLatestVersionsOrBuilder
- 
- All Superinterfaces:
 com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
 ModelRegistry.GetLatestVersions,ModelRegistry.GetLatestVersions.Builder
- Enclosing class:
 - ModelRegistry
 
public static interface ModelRegistry.GetLatestVersionsOrBuilder extends com.google.protobuf.MessageOrBuilder 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()Registered model unique name identifier.com.google.protobuf.ByteStringgetNameBytes()Registered model unique name identifier.java.lang.StringgetStages(int index)List of stages.com.google.protobuf.ByteStringgetStagesBytes(int index)List of stages.intgetStagesCount()List of stages.java.util.List<java.lang.String>getStagesList()List of stages.booleanhasName()Registered model unique name identifier.- 
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()
Registered model unique name identifier.
optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
 - Whether the name field is set.
 
 
- 
getName
java.lang.String getName()
Registered model unique name identifier.
optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
 - The name.
 
 
- 
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Registered model unique name identifier.
optional string name = 1 [(.mlflow.validate_required) = true];- Returns:
 - The bytes for name.
 
 
- 
getStagesList
java.util.List<java.lang.String> getStagesList()
List of stages.
repeated string stages = 2;- Returns:
 - A list containing the stages.
 
 
- 
getStagesCount
int getStagesCount()
List of stages.
repeated string stages = 2;- Returns:
 - The count of stages.
 
 
- 
getStages
java.lang.String getStages(int index)
List of stages.
repeated string stages = 2;- Parameters:
 index- The index of the element to return.- Returns:
 - The stages at the given index.
 
 
- 
getStagesBytes
com.google.protobuf.ByteString getStagesBytes(int index)
List of stages.
repeated string stages = 2;- Parameters:
 index- The index of the value to return.- Returns:
 - The bytes of the stages at the given index.
 
 
 - 
 
 -