This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.swing
enum GroupLayout.Alignment

java.lang.Object extended by java.lang.Enum extended by javax.swing.GroupLayout.Alignment
All Implemented Interfaces:
Serializable, Comparable

public static final enum GroupLayout.Alignment
extends Enum

Enumeration of the possible ways {@code ParallelGroup} can align its children.


Field Summary
static GroupLayout.Alignment BASELINE
          Indicates the elements should be aligned along their baseline.
static GroupLayout.Alignment CENTER
          Indicates the elements should be centered in the region.
static GroupLayout.Alignment LEADING
          Indicates the elements should be aligned to the origin.
static GroupLayout.Alignment TRAILING
          Indicates the elements should be aligned to the end of the region.
 
Method Summary
static GroupLayout.Alignment

          
static GroupLayout.Alignment[]

          
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

BASELINE

public static final GroupLayout.Alignment BASELINE
Indicates the elements should be aligned along their baseline.

CENTER

public static final GroupLayout.Alignment CENTER
Indicates the elements should be centered in the region.

LEADING

public static final GroupLayout.Alignment LEADING
Indicates the elements should be aligned to the origin. For the horizontal axis with a left to right orientation this means aligned to the left edge. For the vertical axis leading means aligned to the top edge.

TRAILING

public static final GroupLayout.Alignment TRAILING
Indicates the elements should be aligned to the end of the region. For the horizontal axis with a left to right orientation this means aligned to the right edge. For the vertical axis trailing means aligned to the bottom edge.
Method Detail

valueOf

public static GroupLayout.Alignment valueOf(String name)
Parameters:
name

values

public static GroupLayout.Alignment[] values()


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.