JavaTM 2 Platform
Standard Ed. 6

javax.swing
列舉 GroupLayout.Alignment

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

public static enum GroupLayout.Alignment
extends Enum<GroupLayout.Alignment>

ParallelGroup 能夠對齊其子元素的可能方式的列舉。

從以下版本開始:
1.6
另請參見:
GroupLayout.createParallelGroup(Alignment)

列舉常數摘要
BASELINE
          指示元素應該沿其基線對齊。
CENTER
          指示元素應該在區域內居中。
LEADING
          指示元素應該向原點對齊。
TRAILING
          指示元素應該向區域底端對齊。
 
方法摘要
static GroupLayout.Alignment valueOf(String name)
          返回帶有指定名稱的該型別的列舉常數。
static GroupLayout.Alignment[] 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
 

列舉常數詳細資訊

LEADING

public static final GroupLayout.Alignment LEADING
指示元素應該向原點對齊。對於從左到右的水平軸,這表示向左端對齊。對於垂直軸,LEADING 表示向頂端對齊。

另請參見:
GroupLayout.createParallelGroup(Alignment)

TRAILING

public static final GroupLayout.Alignment TRAILING
指示元素應該向區域底端對齊。對於從左到右的水平軸,這表示向右端對齊。對於垂直軸,TRAILING 表示向底端對齊。

另請參見:
GroupLayout.createParallelGroup(Alignment)

CENTER

public static final GroupLayout.Alignment CENTER
指示元素應該在區域內居中。

另請參見:
GroupLayout.createParallelGroup(Alignment)

BASELINE

public static final GroupLayout.Alignment BASELINE
指示元素應該沿其基線對齊。

另請參見:
GroupLayout.createParallelGroup(Alignment), GroupLayout.createBaselineGroup(boolean,boolean)
方法詳細資訊

values

public static final GroupLayout.Alignment[] 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(GroupLayout.Alignment c : GroupLayout.Alignment.values())
        System.out.println(c);

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

valueOf

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

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

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

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