Package org.mlflow.api.proto
Interface Service.RunOrBuilder
- 
- All Superinterfaces:
 com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
 Service.Run,Service.Run.Builder
- Enclosing class:
 - Service
 
public static interface Service.RunOrBuilder extends com.google.protobuf.MessageOrBuilder 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Service.RunDatagetData()Run data.Service.RunDataOrBuildergetDataOrBuilder()Run data.Service.RunInfogetInfo()Run metadata.Service.RunInfoOrBuildergetInfoOrBuilder()Run metadata.Service.RunInputsgetInputs()Run inputs.Service.RunInputsOrBuildergetInputsOrBuilder()Run inputs.Service.RunOutputsgetOutputs()Run outputs.Service.RunOutputsOrBuildergetOutputsOrBuilder()Run outputs.booleanhasData()Run data.booleanhasInfo()Run metadata.booleanhasInputs()Run inputs.booleanhasOutputs()Run outputs.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof 
 - 
 
 - 
 
- 
- 
Method Detail
- 
hasInfo
boolean hasInfo()
Run metadata.
optional .mlflow.RunInfo info = 1;- Returns:
 - Whether the info field is set.
 
 
- 
getInfo
Service.RunInfo getInfo()
Run metadata.
optional .mlflow.RunInfo info = 1;- Returns:
 - The info.
 
 
- 
getInfoOrBuilder
Service.RunInfoOrBuilder getInfoOrBuilder()
Run metadata.
optional .mlflow.RunInfo info = 1; 
- 
hasData
boolean hasData()
Run data.
optional .mlflow.RunData data = 2;- Returns:
 - Whether the data field is set.
 
 
- 
getData
Service.RunData getData()
Run data.
optional .mlflow.RunData data = 2;- Returns:
 - The data.
 
 
- 
getDataOrBuilder
Service.RunDataOrBuilder getDataOrBuilder()
Run data.
optional .mlflow.RunData data = 2; 
- 
hasInputs
boolean hasInputs()
Run inputs.
optional .mlflow.RunInputs inputs = 3;- Returns:
 - Whether the inputs field is set.
 
 
- 
getInputs
Service.RunInputs getInputs()
Run inputs.
optional .mlflow.RunInputs inputs = 3;- Returns:
 - The inputs.
 
 
- 
getInputsOrBuilder
Service.RunInputsOrBuilder getInputsOrBuilder()
Run inputs.
optional .mlflow.RunInputs inputs = 3; 
- 
hasOutputs
boolean hasOutputs()
Run outputs.
optional .mlflow.RunOutputs outputs = 4;- Returns:
 - Whether the outputs field is set.
 
 
- 
getOutputs
Service.RunOutputs getOutputs()
Run outputs.
optional .mlflow.RunOutputs outputs = 4;- Returns:
 - The outputs.
 
 
- 
getOutputsOrBuilder
Service.RunOutputsOrBuilder getOutputsOrBuilder()
Run outputs.
optional .mlflow.RunOutputs outputs = 4; 
 - 
 
 -