Package org.mlflow.api.proto
Interface ModelRegistry.ModelParamOrBuilder
- 
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder,- com.google.protobuf.MessageOrBuilder
 - All Known Implementing Classes:
- ModelRegistry.ModelParam,- ModelRegistry.ModelParam.Builder
 - Enclosing class:
- ModelRegistry
 
 public static interface ModelRegistry.ModelParamOrBuilder extends com.google.protobuf.MessageOrBuilder
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetName()Name of the param.com.google.protobuf.ByteStringgetNameBytes()Name of the param.java.lang.StringgetValue()Value of the param associated with the name, could be emptycom.google.protobuf.ByteStringgetValueBytes()Value of the param associated with the name, could be emptybooleanhasName()Name of the param.booleanhasValue()Value of the param associated with the name, could be empty- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
hasNameboolean hasName() Name of the param. optional string name = 1;- Returns:
- Whether the name field is set.
 
 - 
getNamejava.lang.String getName() Name of the param. optional string name = 1;- Returns:
- The name.
 
 - 
getNameBytescom.google.protobuf.ByteString getNameBytes() Name of the param. optional string name = 1;- Returns:
- The bytes for name.
 
 - 
hasValueboolean hasValue() Value of the param associated with the name, could be empty optional string value = 2;- Returns:
- Whether the value field is set.
 
 - 
getValuejava.lang.String getValue() Value of the param associated with the name, could be empty optional string value = 2;- Returns:
- The value.
 
 - 
getValueBytescom.google.protobuf.ByteString getValueBytes() Value of the param associated with the name, could be empty optional string value = 2;- Returns:
- The bytes for value.
 
 
- 
 
-