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
Modifier and TypeMethodDescriptiongetName()
Name of the param.com.google.protobuf.ByteString
Name of the param.getValue()
Value of the param associated with the name, could be emptycom.google.protobuf.ByteString
Value of the param associated with the name, could be emptyboolean
hasName()
Name of the param.boolean
hasValue()
Value of the param associated with the name, could be emptyMethods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasName
boolean hasName()Name of the param.
optional string name = 1;
- Returns:
- Whether the name field is set.
-
getName
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
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.
-