public static enum AutoHandler.CallbackObject extends Enum<AutoHandler.CallbackObject>
| Enum Constant and Description |
|---|
Controller
Annotation event handler will be processed by controller.
|
View
Annotation event handler will be processed by view.
|
| Modifier and Type | Method and Description |
|---|---|
static AutoHandler.CallbackObject |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoHandler.CallbackObject[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoHandler.CallbackObject Controller
public static final AutoHandler.CallbackObject View
public static AutoHandler.CallbackObject[] values()
for (AutoHandler.CallbackObject c : AutoHandler.CallbackObject.values()) System.out.println(c);
public static AutoHandler.CallbackObject 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 JRebirth OSS. All rights reserved.