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

marquez.api.models.SortDirection 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;

import lombok.AllArgsConstructor;
import lombok.Getter;

@AllArgsConstructor
public enum SortDirection {
  DESC("desc"),
  ASC("asc");

  @Getter public final String value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy