Interface Service.AssessmentSourceOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Service.AssessmentSource, Service.AssessmentSource.Builder
    Enclosing class:
    Service

    public static interface Service.AssessmentSourceOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getSourceId()
      Identifier for the source.
      com.google.protobuf.ByteString getSourceIdBytes()
      Identifier for the source.
      Service.AssessmentSource.SourceType getSourceType()
      The type of the source.
      boolean hasSourceId()
      Identifier for the source.
      boolean hasSourceType()
      The type of the source.
      • Methods 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 Detail

      • hasSourceType

        boolean hasSourceType()
         The type of the source.
         
        optional .mlflow.AssessmentSource.SourceType source_type = 1 [(.mlflow.validate_required) = true];
        Returns:
        Whether the sourceType field is set.
      • getSourceType

        Service.AssessmentSource.SourceType getSourceType()
         The type of the source.
         
        optional .mlflow.AssessmentSource.SourceType source_type = 1 [(.mlflow.validate_required) = true];
        Returns:
        The sourceType.
      • hasSourceId

        boolean hasSourceId()
         Identifier for the source.
         Example: For human -> user name; for LLM judge -> judge source (databricks or custom); for code -> empty.
         
        optional string source_id = 2 [(.mlflow.validate_required) = true];
        Returns:
        Whether the sourceId field is set.
      • getSourceId

        java.lang.String getSourceId()
         Identifier for the source.
         Example: For human -> user name; for LLM judge -> judge source (databricks or custom); for code -> empty.
         
        optional string source_id = 2 [(.mlflow.validate_required) = true];
        Returns:
        The sourceId.
      • getSourceIdBytes

        com.google.protobuf.ByteString getSourceIdBytes()
         Identifier for the source.
         Example: For human -> user name; for LLM judge -> judge source (databricks or custom); for code -> empty.
         
        optional string source_id = 2 [(.mlflow.validate_required) = true];
        Returns:
        The bytes for sourceId.