Package org.mlflow.api.proto
Interface Service.FeedbackOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.Feedback
,Service.Feedback.Builder
- Enclosing class:
- Service
public static interface Service.FeedbackOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.Value
getValue()
Value of the feedback-based assessment.com.google.protobuf.ValueOrBuilder
getValueOrBuilder()
Value of the feedback-based assessment.boolean
hasValue()
Value of the feedback-based assessment.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasValue
boolean hasValue()
Value of the feedback-based assessment. We use google.protobuf.Value to support a flexible schema of feedback values. Supported initial types: - Numeric values like integers or floats - Boolean values - Text value (can contain json text the user wishes to store, but it will only be searchable as text) - Non-empty list values containing only strings - Other values like structs, non-string lists etc. will be rejected for now
optional .google.protobuf.Value value = 2;
- Returns:
- Whether the value field is set.
-
getValue
com.google.protobuf.Value getValue()
Value of the feedback-based assessment. We use google.protobuf.Value to support a flexible schema of feedback values. Supported initial types: - Numeric values like integers or floats - Boolean values - Text value (can contain json text the user wishes to store, but it will only be searchable as text) - Non-empty list values containing only strings - Other values like structs, non-string lists etc. will be rejected for now
optional .google.protobuf.Value value = 2;
- Returns:
- The value.
-
getValueOrBuilder
com.google.protobuf.ValueOrBuilder getValueOrBuilder()
Value of the feedback-based assessment. We use google.protobuf.Value to support a flexible schema of feedback values. Supported initial types: - Numeric values like integers or floats - Boolean values - Text value (can contain json text the user wishes to store, but it will only be searchable as text) - Non-empty list values containing only strings - Other values like structs, non-string lists etc. will be rejected for now
optional .google.protobuf.Value value = 2;
-
-