public enum ActionLogToShow extends Enum<ActionLogToShow>
Enum Constant and Description |
---|
ANNOTATED |
COMMENTED |
DOWNLOADED |
NO_ACTION |
RENAMED |
UPDATED |
UPLOADED |
VIEWED |
Modifier and Type | Method and Description |
---|---|
static ActionLogToShow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionLogToShow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionLogToShow NO_ACTION
public static final ActionLogToShow UPLOADED
public static final ActionLogToShow VIEWED
public static final ActionLogToShow DOWNLOADED
public static final ActionLogToShow UPDATED
public static final ActionLogToShow ANNOTATED
public static final ActionLogToShow COMMENTED
public static final ActionLogToShow RENAMED
public static ActionLogToShow[] values()
for (ActionLogToShow c : ActionLogToShow.values()) System.out.println(c);
public static ActionLogToShow 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 © 2019. All rights reserved.