org.cruxframework.crux.plugin.gadget.client.features
Enum Tabs.Align
java.lang.Object
java.lang.Enum<Tabs.Align>
org.cruxframework.crux.plugin.gadget.client.features.Tabs.Align
- All Implemented Interfaces:
- Serializable, Comparable<Tabs.Align>
- Enclosing class:
- Tabs
public static enum Tabs.Align
- extends Enum<Tabs.Align>
- Author:
- Thiago da Rosa de Bustamante
|
Method Summary |
static Tabs.Align |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Tabs.Align[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
left
public static final Tabs.Align left
center
public static final Tabs.Align center
right
public static final Tabs.Align right
values
public static Tabs.Align[] 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 (Tabs.Align c : Tabs.Align.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Tabs.Align 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 © 2014. All rights reserved.