|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 列舉常數 | 欄位 | 方法 | 詳細資訊: 列舉常數 | 欄位 | 方法 |
java.lang.Object java.lang.Enum<SortOrder> javax.swing.SortOrder
public enum SortOrder
SortOrder 是可能排序順序的列舉。
RowSorter
列舉常數摘要 | |
---|---|
ASCENDING
指示項以遞增順序排序的列舉值。 |
|
DESCENDING
指示項以遞減順序排序的列舉值。 |
|
UNSORTED
指示項為無序的列舉值。 |
方法摘要 | |
---|---|
static SortOrder |
valueOf(String name)
返回帶有指定名稱的該型別的列舉常數。 |
static SortOrder[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
從類別 java.lang.Enum 繼承的方法 |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
從類別 java.lang.Object 繼承的方法 |
---|
getClass, notify, notifyAll, wait, wait, wait |
列舉常數詳細資訊 |
---|
public static final SortOrder ASCENDING
ASCENDING
順序排序的集合 1, 4, 0
為 0, 1, 4
。
public static final SortOrder DESCENDING
DESCENDING
順序排序的集合 1, 4, 0
為 4, 1, 0
。
public static final SortOrder UNSORTED
UNSORTED
順序排序的集合 1, 4, 0
為 1, 4, 0
。
方法詳細資訊 |
---|
public static final SortOrder[] values()
for(SortOrder c : SortOrder.values()) System.out.println(c);
public static SortOrder valueOf(String name)
指定要返回的列舉常數的名稱。
-
如果該列舉型別沒有帶有指定名稱的常數,
- 則拋出 IllegalArgumentException
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 列舉常數 | 欄位 | 方法 | 詳細資訊: 列舉常數 | 欄位 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。