public static final enum

GroupLayout.Alignment

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ javax.swing.GroupLayout.Alignment

Class Overview

Enumeration of the possible ways ParallelGroup can align its children.

Summary

Enum Values
GroupLayout.Alignment  BASELINE  Indicates the elements should be aligned along their baseline. 
GroupLayout.Alignment  CENTER  Indicates the elements should be centered in the region. 
GroupLayout.Alignment  LEADING  Indicates the elements should be aligned to the origin. 
GroupLayout.Alignment  TRAILING  Indicates the elements should be aligned to the end of the region. 
Public Methods
static GroupLayout.Alignment valueOf(String name)
final static Alignment[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final GroupLayout.Alignment BASELINE

Indicates the elements should be aligned along their baseline.

public static final GroupLayout.Alignment CENTER

Indicates the elements should be centered in the region.

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.

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.

Public Methods

public static GroupLayout.Alignment valueOf (String name)

public static final Alignment[] values ()