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

io.voucherify.client.model.common.SortingOrder Maven / Gradle / Ivy

package io.voucherify.client.model.common;

import lombok.Getter;

@Getter
public enum SortingOrder {

  ASC(""), DESC("-");

  private final String sorting;

  SortingOrder(String sorting) {
    this.sorting = sorting;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy