public final enum

SortOrder

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ javax.swing.SortOrder

Class Overview

SortOrder is an enumeration of the possible sort orderings.

See Also

Summary

Enum Values
SortOrder  ASCENDING  Enumeration value indicating the items are sorted in increasing order. 
SortOrder  DESCENDING  Enumeration value indicating the items are sorted in decreasing order. 
SortOrder  UNSORTED  Enumeration value indicating the items are unordered. 
Public Methods
static SortOrder valueOf(String name)
final static SortOrder[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final SortOrder ASCENDING

Enumeration value indicating the items are sorted in increasing order. For example, the set 1, 4, 0 sorted in ASCENDING order is 0, 1, 4.

public static final SortOrder DESCENDING

Enumeration value indicating the items are sorted in decreasing order. For example, the set 1, 4, 0 sorted in DESCENDING order is 4, 1, 0.

public static final SortOrder UNSORTED

Enumeration value indicating the items are unordered. For example, the set 1, 4, 0 in UNSORTED order is 1, 4, 0.

Public Methods

public static SortOrder valueOf (String name)

public static final SortOrder[] values ()