@Deprecated public static enum LikeView.Style extends java.lang.Enum<LikeView.Style>
| Enum Constant and Description |
|---|
BOX_COUNT
Deprecated.
Setting the attribute to this value will display the button and a box near it with the number
of likes for the associated object
|
BUTTON
Deprecated.
Setting the attribute to this value will display the button by itself, with no other
components
|
STANDARD
Deprecated.
Setting the attribute to this value will display the button and a sentence near it that
describes the social sentence for the associated object.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Deprecated.
|
static LikeView.Style |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static LikeView.Style[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LikeView.Style STANDARD
This is the default value
public static final LikeView.Style BUTTON
public static final LikeView.Style BOX_COUNT
public static LikeView.Style[] values()
for (LikeView.Style c : LikeView.Style.values()) System.out.println(c);
public static LikeView.Style 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 toString()
toString in class java.lang.Enum<LikeView.Style>