public enum CallbackType extends Enum<CallbackType>
Enum Constant and Description |
---|
CREATEDROW |
DRAW |
FOOTER |
FORMAT |
HEADER |
INFO |
INIT |
PREDRAW |
ROW |
STATELOAD |
STATELOADED |
STATELOADPARAMS |
STATESAVE |
STATESAVEPARAMS |
Modifier and Type | Method and Description |
---|---|
String[] |
getArgs() |
String |
getName() |
boolean |
hasReturn() |
void |
setArgs(String[] args) |
void |
setFunction(String function) |
void |
setHasReturn(boolean hasReturn) |
static CallbackType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallbackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallbackType CREATEDROW
public static final CallbackType DRAW
public static final CallbackType FOOTER
public static final CallbackType FORMAT
public static final CallbackType HEADER
public static final CallbackType INFO
public static final CallbackType INIT
public static final CallbackType PREDRAW
public static final CallbackType ROW
public static final CallbackType STATESAVE
public static final CallbackType STATESAVEPARAMS
public static final CallbackType STATELOAD
public static final CallbackType STATELOADPARAMS
public static final CallbackType STATELOADED
public static CallbackType[] values()
for (CallbackType c : CallbackType.values()) System.out.println(c);
public static CallbackType 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 nullpublic String getName()
public void setFunction(String function)
public String[] getArgs()
public void setArgs(String[] args)
public boolean hasReturn()
public void setHasReturn(boolean hasReturn)
Copyright © 2013–2015 Dandelion Project. All rights reserved.