org.richfaces.component
Enum SwitchType
java.lang.Object
java.lang.Enum<SwitchType>
org.richfaces.component.SwitchType
- All Implemented Interfaces:
- Serializable, Comparable<SwitchType>
public enum SwitchType
- extends Enum<SwitchType>
- Since:
- Jun 15, 2010
- Author:
- akolonitsky
Enum Constant Summary |
ajax
value for tab change method - ajax tabs |
client
value for tab change method for - client-side tabs. |
server
value for tab change method - server-side tabs |
Method Summary |
static SwitchType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SwitchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
client
public static final SwitchType client
- value for tab change method for - client-side tabs.
server
public static final SwitchType server
- value for tab change method - server-side tabs
ajax
public static final SwitchType ajax
- value for tab change method - ajax tabs
DEFAULT
public static final SwitchType DEFAULT
values
public static SwitchType[] 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 (SwitchType c : SwitchType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static SwitchType 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 © 2011 JBoss, a division of Red Hat, Inc.. All Rights Reserved.