public static enum Accordion.AccordionTriggerEvent extends Enum<Accordion.AccordionTriggerEvent>
Defines the possible events to trigger the accordion's content switching.
| Modifier and Type | Method and Description |
|---|---|
static Accordion.AccordionTriggerEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Accordion.AccordionTriggerEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Accordion.AccordionTriggerEvent CLICK
public static final Accordion.AccordionTriggerEvent MOUSEOVER
public static Accordion.AccordionTriggerEvent[] values()
for (Accordion.AccordionTriggerEvent c : Accordion.AccordionTriggerEvent.values()) System.out.println(c);
public static Accordion.AccordionTriggerEvent 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 © 2009-2012. All Rights Reserved.