All Downloads are FREE. Search and download functionalities are using the official Maven repository.

marquez.api.models.SearchSort Maven / Gradle / Ivy

There is a newer version: 0.49.0
Show newest version
/*
 * Copyright 2018-2023 contributors to the Marquez project
 * SPDX-License-Identifier: Apache-2.0
 */

package marquez.api.models;

/** Sort supported for {@link SearchResult}. */
public enum SearchSort {
  NAME("name"),
  UPDATE_AT("updated_at");

  final String value;

  SearchSort(String value) {
    this.value = value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy