public static enum LikeButton.LikeButtonAction extends Enum<LikeButton.LikeButtonAction>
Modifier and Type | Method and Description |
---|---|
static LikeButton.LikeButtonAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LikeButton.LikeButtonAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LikeButton.LikeButtonAction LIKE
public static final LikeButton.LikeButtonAction RECOMMEND
public static LikeButton.LikeButtonAction[] values()
for (LikeButton.LikeButtonAction c : LikeButton.LikeButtonAction.values()) System.out.println(c);
public static LikeButton.LikeButtonAction 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 © 2015. All rights reserved.