public enum Like extends java.lang.Enum<Like> implements ResponseValue
Enum Constant and Description |
---|
DISLIKE
A negative vote.
|
LIKE
A positive vote.
|
Modifier and Type | Method and Description |
---|---|
static Like |
getLikeByResponseValue(java.lang.String responseValue) |
java.lang.String |
getResponseValue() |
static Like |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Like[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Like LIKE
public static final Like DISLIKE
public static Like[] values()
for (Like c : Like.values()) System.out.println(c);
public static Like 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 namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getResponseValue()
getResponseValue
in interface ResponseValue
public static Like getLikeByResponseValue(java.lang.String responseValue)
responseValue
- String representation of the Vote valueCopyright © 2010 - 2020 Adobe. All Rights Reserved