Enum Class PageableState

java.lang.Object
java.lang.Enum<PageableState>
api.mpba.rastvdmy.controller.PageableState
All Implemented Interfaces:
Serializable, Comparable<PageableState>, Constable

public enum PageableState extends Enum<PageableState>
Enum representing the sorting order for pageable requests.

This enum defines two states: ASC (ascending) and DESC (descending) for sorting data when implementing pagination functionality.

  • Enum Constant Details

    • ASC

      public static final PageableState ASC
      Represents ascending order.
    • DESC

      public static final PageableState DESC
      Represents descending order.
  • Method Details

    • values

      public static PageableState[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PageableState valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Returns the string representation of the sorting order.
      Overrides:
      toString in class Enum<PageableState>
      Returns:
      The sorting order as a string.