Interface Service.SearchLoggedModels.OrderByOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getAscending()
      Whether the order is ascending or not.
      java.lang.String getDatasetDigest()
      If ``field_name`` refers to a metric, this field specifies the digest of the dataset associated with the metric.
      com.google.protobuf.ByteString getDatasetDigestBytes()
      If ``field_name`` refers to a metric, this field specifies the digest of the dataset associated with the metric.
      java.lang.String getDatasetName()
      If ``field_name`` refers to a metric, this field specifies the name of the dataset associated with the metric.
      com.google.protobuf.ByteString getDatasetNameBytes()
      If ``field_name`` refers to a metric, this field specifies the name of the dataset associated with the metric.
      java.lang.String getFieldName()
      Name of the field to order by, e.g.
      com.google.protobuf.ByteString getFieldNameBytes()
      Name of the field to order by, e.g.
      boolean hasAscending()
      Whether the order is ascending or not.
      boolean hasDatasetDigest()
      If ``field_name`` refers to a metric, this field specifies the digest of the dataset associated with the metric.
      boolean hasDatasetName()
      If ``field_name`` refers to a metric, this field specifies the name of the dataset associated with the metric.
      boolean hasFieldName()
      Name of the field to order by, e.g.
      • 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

      • hasFieldName

        boolean hasFieldName()
         Name of the field to order by, e.g. "metrics.accuracy".
         
        optional string field_name = 1 [(.mlflow.validate_required) = true];
        Returns:
        Whether the fieldName field is set.
      • getFieldName

        java.lang.String getFieldName()
         Name of the field to order by, e.g. "metrics.accuracy".
         
        optional string field_name = 1 [(.mlflow.validate_required) = true];
        Returns:
        The fieldName.
      • getFieldNameBytes

        com.google.protobuf.ByteString getFieldNameBytes()
         Name of the field to order by, e.g. "metrics.accuracy".
         
        optional string field_name = 1 [(.mlflow.validate_required) = true];
        Returns:
        The bytes for fieldName.
      • hasAscending

        boolean hasAscending()
         Whether the order is ascending or not.
         
        optional bool ascending = 2 [default = true];
        Returns:
        Whether the ascending field is set.
      • getAscending

        boolean getAscending()
         Whether the order is ascending or not.
         
        optional bool ascending = 2 [default = true];
        Returns:
        The ascending.
      • hasDatasetName

        boolean hasDatasetName()
         If ``field_name`` refers to a metric, this field specifies the name of the dataset
         associated with the metric. Only metrics associated with the specified dataset name will be
         considered for ordering. This field may only be set if ``field_name`` refers to a metric.
         
        optional string dataset_name = 3;
        Returns:
        Whether the datasetName field is set.
      • getDatasetName

        java.lang.String getDatasetName()
         If ``field_name`` refers to a metric, this field specifies the name of the dataset
         associated with the metric. Only metrics associated with the specified dataset name will be
         considered for ordering. This field may only be set if ``field_name`` refers to a metric.
         
        optional string dataset_name = 3;
        Returns:
        The datasetName.
      • getDatasetNameBytes

        com.google.protobuf.ByteString getDatasetNameBytes()
         If ``field_name`` refers to a metric, this field specifies the name of the dataset
         associated with the metric. Only metrics associated with the specified dataset name will be
         considered for ordering. This field may only be set if ``field_name`` refers to a metric.
         
        optional string dataset_name = 3;
        Returns:
        The bytes for datasetName.
      • hasDatasetDigest

        boolean hasDatasetDigest()
         If ``field_name`` refers to a metric, this field specifies the digest of the dataset
         associated with the metric. Only metrics associated with the specified dataset name
         and digest will be considered for ordering. This field may only be set if ``dataset_name``
         is also set.
         
        optional string dataset_digest = 4;
        Returns:
        Whether the datasetDigest field is set.
      • getDatasetDigest

        java.lang.String getDatasetDigest()
         If ``field_name`` refers to a metric, this field specifies the digest of the dataset
         associated with the metric. Only metrics associated with the specified dataset name
         and digest will be considered for ordering. This field may only be set if ``dataset_name``
         is also set.
         
        optional string dataset_digest = 4;
        Returns:
        The datasetDigest.
      • getDatasetDigestBytes

        com.google.protobuf.ByteString getDatasetDigestBytes()
         If ``field_name`` refers to a metric, this field specifies the digest of the dataset
         associated with the metric. Only metrics associated with the specified dataset name
         and digest will be considered for ordering. This field may only be set if ``dataset_name``
         is also set.
         
        optional string dataset_digest = 4;
        Returns:
        The bytes for datasetDigest.