|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ActionVerb>
org.olat.core.logging.activity.ActionVerb
public enum ActionVerb
Global list of actionVerbs existing in OLAT.
The actionVerb will be stored to the logging table and the idea is to keep this list short and clean
Note that the result of ActionVerb.name() will be used directly as the String stored to the database - hence use a meaningful, short (16 characters at max) String.
Initial Date: 10.11.2009
| Enum Constant Summary | |
|---|---|
add
|
|
close
|
|
copy
|
|
denied
|
|
edit
|
|
exit
|
|
hide
|
|
launch
|
|
lock
|
|
move
|
|
open
|
|
perform
|
|
remove
|
|
view
|
|
| Method Summary | |
|---|---|
static ActionVerb |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ActionVerb[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ActionVerb add
public static final ActionVerb close
public static final ActionVerb copy
public static final ActionVerb denied
public static final ActionVerb edit
public static final ActionVerb exit
public static final ActionVerb hide
public static final ActionVerb launch
public static final ActionVerb lock
public static final ActionVerb move
public static final ActionVerb open
public static final ActionVerb perform
public static final ActionVerb remove
public static final ActionVerb view
| Method Detail |
|---|
public static ActionVerb[] values()
for (ActionVerb c : ActionVerb.values()) System.out.println(c);
public static ActionVerb valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||