Package org.mlflow.api.proto
Interface Assessments.Expectation.SerializedValueOrBuilder
- 
- All Superinterfaces:
- com.google.protobuf.MessageLiteOrBuilder,- com.google.protobuf.MessageOrBuilder
 - All Known Implementing Classes:
- Assessments.Expectation.SerializedValue,- Assessments.Expectation.SerializedValue.Builder
 - Enclosing class:
- Assessments.Expectation
 
 public static interface Assessments.Expectation.SerializedValueOrBuilder extends com.google.protobuf.MessageOrBuilder
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetSerializationFormat()Marks the serialization format for the expectation value.com.google.protobuf.ByteStringgetSerializationFormatBytes()Marks the serialization format for the expectation value.java.lang.StringgetValue()The value of the expectation-based assessment serialized as a string in the format defined by ``serialization_format``.com.google.protobuf.ByteStringgetValueBytes()The value of the expectation-based assessment serialized as a string in the format defined by ``serialization_format``.booleanhasSerializationFormat()Marks the serialization format for the expectation value.booleanhasValue()The value of the expectation-based assessment serialized as a string in the format defined by ``serialization_format``.- 
Methods inherited from interface com.google.protobuf.MessageOrBuilderfindInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
 
- 
 
- 
- 
- 
Method Detail- 
hasSerializationFormatboolean hasSerializationFormat() Marks the serialization format for the expectation value. This is a contract specific to the client. The service will not attempt to deserialize the value or validate the format. An example format is "JSON_FORMAT". optional string serialization_format = 1;- Returns:
- Whether the serializationFormat field is set.
 
 - 
getSerializationFormatjava.lang.String getSerializationFormat() Marks the serialization format for the expectation value. This is a contract specific to the client. The service will not attempt to deserialize the value or validate the format. An example format is "JSON_FORMAT". optional string serialization_format = 1;- Returns:
- The serializationFormat.
 
 - 
getSerializationFormatBytescom.google.protobuf.ByteString getSerializationFormatBytes() Marks the serialization format for the expectation value. This is a contract specific to the client. The service will not attempt to deserialize the value or validate the format. An example format is "JSON_FORMAT". optional string serialization_format = 1;- Returns:
- The bytes for serializationFormat.
 
 - 
hasValueboolean hasValue() The value of the expectation-based assessment serialized as a string in the format defined by ``serialization_format``. optional string value = 2;- Returns:
- Whether the value field is set.
 
 - 
getValuejava.lang.String getValue() The value of the expectation-based assessment serialized as a string in the format defined by ``serialization_format``. optional string value = 2;- Returns:
- The value.
 
 - 
getValueBytescom.google.protobuf.ByteString getValueBytes() The value of the expectation-based assessment serialized as a string in the format defined by ``serialization_format``. optional string value = 2;- Returns:
- The bytes for value.
 
 
- 
 
-