public enum ShowUserStatisticAction extends Enum<ShowUserStatisticAction>
| Enum Constant and Description |
|---|
COMMENTS_GOT_BY_USER |
COMMENTS_MADE_BY_USER |
LIKES_GOT_BY_USER |
LIKES_MADE_BY_USER |
POSTS_MADE_BY_USER |
| Modifier and Type | Method and Description |
|---|---|
String |
getHumanFriendlyAction() |
static ShowUserStatisticAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShowUserStatisticAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShowUserStatisticAction POSTS_MADE_BY_USER
public static final ShowUserStatisticAction LIKES_MADE_BY_USER
public static final ShowUserStatisticAction COMMENTS_MADE_BY_USER
public static final ShowUserStatisticAction LIKES_GOT_BY_USER
public static final ShowUserStatisticAction COMMENTS_GOT_BY_USER
public static ShowUserStatisticAction[] values()
for (ShowUserStatisticAction c : ShowUserStatisticAction.values()) System.out.println(c);
public static ShowUserStatisticAction 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 getHumanFriendlyAction()
Copyright © 2016. All Rights Reserved.