Enum Class UserStorage.Order

java.lang.Object
java.lang.Enum<UserStorage.Order>
de.espirit.firstspirit.access.admin.UserStorage.Order
All Implemented Interfaces:
Serializable, Comparable<UserStorage.Order>, Constable
Enclosing interface:
UserStorage

public static enum UserStorage.Order extends Enum<UserStorage.Order>
Enum represanting different order strategies
Since:
4.0.17
  • Enum Constant Details

    • ABBREVIATION

      public static final UserStorage.Order ABBREVIATION
      Order by a defined abbreviation.
      Since:
      4.0.17
    • EMAIL

      public static final UserStorage.Order EMAIL
      Order by e-mail address.
      Since:
      4.0.17
    • ID

      public static final UserStorage.Order ID
      Order by the user's id.
      Since:
      4.0.17
    • LOGIN

      public static final UserStorage.Order LOGIN
      Order by the user's login name.
      Since:
      4.0.17
    • NAME

      public static final UserStorage.Order NAME
      Order by the user's real name.
      Since:
      4.0.17
  • Method Details

    • values

      public static UserStorage.Order[] 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 UserStorage.Order 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