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 Summary
All 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.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof 
 - 
 
 - 
 
- 
- 
Method Detail
- 
hasName
boolean hasName()
Name of the param.
optional string name = 1;- Returns:
 - Whether the name field is set.
 
 
- 
getName
java.lang.String getName()
Name of the param.
optional string name = 1;- Returns:
 - The name.
 
 
- 
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the param.
optional string name = 1;- Returns:
 - The bytes for name.
 
 
- 
hasValue
boolean hasValue()
Value of the param associated with the name, could be empty
optional string value = 2;- Returns:
 - Whether the value field is set.
 
 
- 
getValue
java.lang.String getValue()
Value of the param associated with the name, could be empty
optional string value = 2;- Returns:
 - The value.
 
 
- 
getValueBytes
com.google.protobuf.ByteString getValueBytes()
Value of the param associated with the name, could be empty
optional string value = 2;- Returns:
 - The bytes for value.
 
 
 - 
 
 -