Enum Class AnnotationSetDao.SummarySort
java.lang.Object
java.lang.Enum<AnnotationSetDao.SummarySort>
ubic.gemma.persistence.service.common.auditAndSecurity.curation.AnnotationSetDao.SummarySort
- All Implemented Interfaces:
Serializable, Comparable<AnnotationSetDao.SummarySort>, Constable
- Enclosing interface:
AnnotationSetDao
Field a cross-experiment listing is ordered by.
a.id desc is
always appended as a tie-breaker, so a page boundary cannot swap two rows
sharing a timestamp and hide one from the caller paging through.-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWhen the row was stored.When the agent run happened, which is not when it was stored — a queue is ordered by the former. -
Method Summary
Modifier and TypeMethodDescriptionstatic AnnotationSetDao.SummarySortReturns the enum constant of this class with the specified name.static AnnotationSetDao.SummarySort[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CREATED_AT
When the row was stored. -
RAN_AT
When the agent run happened, which is not when it was stored — a queue is ordered by the former.🛑 Only ever null on a non-AGENT set:
attachstampsranAt = nowon an AGENT set that supplies none, so a caller who omits it gets `ranAt` equal to `createdAt` and the two orderings silently coincide. Nulls sort last underdesc. -
ID
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-