org.noos.xing.mydoggy
Enum TabbedContentManagerUI.TabLayout

java.lang.Object
  extended by java.lang.Enum<TabbedContentManagerUI.TabLayout>
      extended by org.noos.xing.mydoggy.TabbedContentManagerUI.TabLayout
All Implemented Interfaces:
Serializable, Comparable<TabbedContentManagerUI.TabLayout>
Enclosing interface:
TabbedContentManagerUI<E extends TabbedContentUI>

public static enum TabbedContentManagerUI.TabLayout
extends Enum<TabbedContentManagerUI.TabLayout>

The tab layout enum used in laying out the tabs when all the tabs will not fit within a single line.

Since:
1.1.0

Enum Constant Summary
SCROLL
          The tab layout for providing a subset of available tabs when all the tabs will not fit within a single line.
WRAP
          The tab layout for wrapping tabs in multiple lines when all tabs will not fit within a single line.
 
Method Summary
static TabbedContentManagerUI.TabLayout valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TabbedContentManagerUI.TabLayout[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

WRAP

public static final TabbedContentManagerUI.TabLayout WRAP
The tab layout for wrapping tabs in multiple lines when all tabs will not fit within a single line.

Since:
1.1.0

SCROLL

public static final TabbedContentManagerUI.TabLayout SCROLL
The tab layout for providing a subset of available tabs when all the tabs will not fit within a single line.

Since:
1.1.0
Method Detail

values

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

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

valueOf

public static TabbedContentManagerUI.TabLayout valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.