Package com.io7m.idstore.model
Enum Class IdUserColumn
- All Implemented Interfaces:
- Serializable,- Comparable<IdUserColumn>,- Constable
The user columns that can be used for ordering.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionOrder by user ID.Order by user id name.Order by user realname.Order by user creation time.Order by user update time.
- 
Method SummaryModifier and TypeMethodDescriptionstatic IdUserColumnReturns the enum constant of this class with the specified name.static IdUserColumn[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
BY_IDOrder by user ID.
- 
BY_IDNAMEOrder by user id name.
- 
BY_REALNAMEOrder by user realname.
- 
BY_TIME_CREATEDOrder by user creation time.
- 
BY_TIME_UPDATEDOrder by user update time.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
 
-