public static enum AccordionEvent.Type extends Enum<AccordionEvent.Type>
| Enum Constant and Description |
|---|
Close
Will close an accordion stack.
|
Open
Opens an Accordion stack.
|
| Modifier and Type | Method and Description |
|---|---|
static AccordionEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccordionEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccordionEvent.Type Open
public static final AccordionEvent.Type Close
public static AccordionEvent.Type[] values()
for (AccordionEvent.Type c : AccordionEvent.Type.values()) System.out.println(c);
public static AccordionEvent.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2011–2015 SWM. All rights reserved.