Enum Class MembersOrderColumn

java.lang.Object
java.lang.Enum<MembersOrderColumn>
cz.metacentrum.perun.core.api.MembersOrderColumn
All Implemented Interfaces:
Serializable, Comparable<MembersOrderColumn>, Constable

public enum MembersOrderColumn extends Enum<MembersOrderColumn>
Class representing columns, that can be used to sort paginated members.

For each such column, this instances also contain sql parts that are specific for them. This class can be extended, in the future, if for example, we would like to sort by some attributes.

Author:
Vojtech Sassmann <vojtech.sassmann@gmail.com>
  • Enum Constant Details

  • Method Details

    • values

      public static MembersOrderColumn[] 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 MembersOrderColumn 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
    • getSqlGroupBy

      public String getSqlGroupBy()
    • getSqlJoin

      public String getSqlJoin()
    • getSqlOrderBy

      public String getSqlOrderBy(MembersPageQuery query)
    • getSqlSelect

      public String getSqlSelect()