JavaTM 2 Platform
Standard Ed. 6

javax.swing
列舉 LayoutStyle.ComponentPlacement

java.lang.Object
  繼承者 java.lang.Enum<LayoutStyle.ComponentPlacement>
      繼承者 javax.swing.LayoutStyle.ComponentPlacement
所有已實作的介面:
Serializable, Comparable<LayoutStyle.ComponentPlacement>
正在封閉類別:
LayoutStyle

public static enum LayoutStyle.ComponentPlacement
extends Enum<LayoutStyle.ComponentPlacement>

ComponentPlacement 是兩個元件相對於彼此的可能放置方式的列舉。ComponentPlacementLayoutStyle 方法 getPreferredGap 使用。有關更多資訊,請參閱 LayoutStyle

從以下版本開始:
1.6
另請參見:
LayoutStyle.getPreferredGap(JComponent,JComponent, ComponentPlacement,int,Container)

列舉常數摘要
INDENT
          一個列舉值,指示被請求元件要縮排的距離。
RELATED
          一個列舉值,指示兩個元件在視覺上相關,並且將被放置在同一個父容器中。
UNRELATED
          一個列舉值,指示兩個元件在視覺上不相關,並且將被放置在同一個的父容器中。
 
方法摘要
static LayoutStyle.ComponentPlacement valueOf(String name)
          返回帶有指定名稱的該型別的列舉常數。
static LayoutStyle.ComponentPlacement[] 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
 

列舉常數詳細資訊

RELATED

public static final LayoutStyle.ComponentPlacement RELATED
一個列舉值,指示兩個元件在視覺上相關,並且將被放置在同一個父容器中。例如,為 JTextField 提供標籤的 JLabel 通常在視覺上與該 JTextField 關聯;常數 RELATED 用於這種情況。


UNRELATED

public static final LayoutStyle.ComponentPlacement UNRELATED
一個列舉值,指示兩個元件在視覺上不相關,並且將被放置在同一個的父容器中。例如,元件的分組通常在視覺上是分開的;常數 UNRELATED 用於此種情況。


INDENT

public static final LayoutStyle.ComponentPlacement INDENT
一個列舉值,指示被請求元件要縮排的距離。例如,經常從標籤中水平縮排該標籤的子元素。要確定此類別間隙的首選距離,使用 INDENT 型別。

此值通常只與 EASTWEST 方向一起使用。

方法詳細資訊

values

public static final LayoutStyle.ComponentPlacement[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for(LayoutStyle.ComponentPlacement c : LayoutStyle.ComponentPlacement.values())
        System.out.println(c);

返回:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static LayoutStyle.ComponentPlacement valueOf(String name)
返回帶有指定名稱的該型別的列舉常數。 字元串必須與用於宣告該型別的列舉常數的 標識符完全比對。(不允許有多餘 的空格。)

參數:
指定要返回的列舉常數的名稱。 -
返回:
返回帶有指定名稱的列舉常數
拋出:
如果該列舉型別沒有帶有指定名稱的常數, - 則拋出 IllegalArgumentException

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only