|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 列舉常數 | 欄位 | 方法 | 詳細資訊: 列舉常數 | 欄位 | 方法 |
java.lang.Object java.lang.Enum<DropMode> javax.swing.DropMode
public enum DropMode
放置網要,用於確定元件在拖放過程中追蹤和指示放置位置 (drop location) 的方法。
JTable.setDropMode(javax.swing.DropMode)
,
JList.setDropMode(javax.swing.DropMode)
,
JTree.setDropMode(javax.swing.DropMode)
,
JTextComponent.setDropMode(javax.swing.DropMode)
列舉常數摘要 | |
---|---|
INSERT
應該根據要插入新資料的位置追蹤放置位置。 |
|
INSERT_COLS
應該根據要插入新列(以容納要放置的資料)處的列索引來追蹤放置位置。 |
|
INSERT_ROWS
應該根據要插入新行(以容納要放置的資料)處的行索引來追蹤放置位置。 |
|
ON
應該根據現有項的索引追蹤放置位置。 |
|
ON_OR_INSERT
此網要是 ON 和 INSERT 的組合,指定資料可以放置在現有項上或 INSERT 指定的插入位置中。 |
|
ON_OR_INSERT_COLS
此網要是 ON 和 INSERT_COLS 的組合,指定資料可以放置在現有項上或 INSERT_COLS 指定的插入列中。 |
|
ON_OR_INSERT_ROWS
此網要是 ON 和 INSERT_ROWS 的組合,指定資料可以放置在現有項上或 INSERT_ROWS 指定的插入行中。 |
|
USE_SELECTION
元件本身的內部選擇機制(或插入符,對於文本元件而言)應該用於追蹤放置位置。 |
方法摘要 | |
---|---|
static DropMode |
valueOf(String name)
返回帶有指定名稱的該型別的列舉常數。 |
static DropMode[] |
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 DropMode USE_SELECTION
public static final DropMode ON
public static final DropMode INSERT
public static final DropMode INSERT_ROWS
public static final DropMode INSERT_COLS
public static final DropMode ON_OR_INSERT
ON
和 INSERT
的組合,指定資料可以放置在現有項上或 INSERT
指定的插入位置中。
public static final DropMode ON_OR_INSERT_ROWS
ON
和 INSERT_ROWS
的組合,指定資料可以放置在現有項上或 INSERT_ROWS
指定的插入行中。
public static final DropMode ON_OR_INSERT_COLS
ON
和 INSERT_COLS
的組合,指定資料可以放置在現有項上或 INSERT_COLS
指定的插入列中。
方法詳細資訊 |
---|
public static final DropMode[] values()
for(DropMode c : DropMode.values()) System.out.println(c);
public static DropMode valueOf(String name)
指定要返回的列舉常數的名稱。
-
如果該列舉型別沒有帶有指定名稱的常數,
- 則拋出 IllegalArgumentException
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 列舉常數 | 欄位 | 方法 | 詳細資訊: 列舉常數 | 欄位 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。