Package org.mlflow.api.proto
Interface Service.ModelOutputOrBuilder
- 
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder,- com.google.protobuf.MessageOrBuilder
 - All Known Implementing Classes:
- Service.ModelOutput,- Service.ModelOutput.Builder
 - Enclosing class:
- Service
 
 public static interface Service.ModelOutputOrBuilder extends com.google.protobuf.MessageOrBuilder
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetModelId()The unique identifier of the model.com.google.protobuf.ByteStringgetModelIdBytes()The unique identifier of the model.longgetStep()Step at which the model was produced.booleanhasModelId()The unique identifier of the model.booleanhasStep()Step at which the model was produced.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
hasModelIdboolean hasModelId() The unique identifier of the model. optional string model_id = 1 [(.mlflow.validate_required) = true];- Returns:
- Whether the modelId field is set.
 
 - 
getModelIdjava.lang.String getModelId() The unique identifier of the model. optional string model_id = 1 [(.mlflow.validate_required) = true];- Returns:
- The modelId.
 
 - 
getModelIdBytescom.google.protobuf.ByteString getModelIdBytes() The unique identifier of the model. optional string model_id = 1 [(.mlflow.validate_required) = true];- Returns:
- The bytes for modelId.
 
 - 
hasStepboolean hasStep() Step at which the model was produced. optional int64 step = 2 [(.mlflow.validate_required) = true];- Returns:
- Whether the step field is set.
 
 - 
getSteplong getStep() Step at which the model was produced. optional int64 step = 2 [(.mlflow.validate_required) = true];- Returns:
- The step.
 
 
- 
 
-