public static enum LikeView.AuxiliaryViewPosition extends Enum<LikeView.AuxiliaryViewPosition>
Enum Constant and Description |
---|
BOTTOM
Setting the attribute to this value will put the social-sentence or box-count below the like button.
|
INLINE
Setting the attribute to this value will put the social-sentence or box-count inline with the like button.
|
TOP
Setting the attribute to this value will put the social-sentence or box-count above the like button.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static LikeView.AuxiliaryViewPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LikeView.AuxiliaryViewPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LikeView.AuxiliaryViewPosition BOTTOM
public static final LikeView.AuxiliaryViewPosition INLINE
public static final LikeView.AuxiliaryViewPosition TOP
public static LikeView.AuxiliaryViewPosition[] values()
for (LikeView.AuxiliaryViewPosition c : LikeView.AuxiliaryViewPosition.values()) System.out.println(c);
public static LikeView.AuxiliaryViewPosition 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 toString()
toString
in class Enum<LikeView.AuxiliaryViewPosition>