@Deprecated public static enum LikeView.HorizontalAlignment extends java.lang.Enum<LikeView.HorizontalAlignment>
| Enum Constant and Description |
|---|
CENTER
Deprecated.
Setting the attribute to this value will center the button and auxiliary view in the
parent view.
|
LEFT
Deprecated.
Setting the attribute to this value will left-justify the button and auxiliary view in
the parent view.
|
RIGHT
Deprecated.
Setting the attribute to this value will right-justify the button and auxiliary view in
the parent view.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Deprecated.
|
static LikeView.HorizontalAlignment |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static LikeView.HorizontalAlignment[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LikeView.HorizontalAlignment CENTER
public static final LikeView.HorizontalAlignment LEFT
public static final LikeView.HorizontalAlignment RIGHT
public static LikeView.HorizontalAlignment[] values()
for (LikeView.HorizontalAlignment c : LikeView.HorizontalAlignment.values()) System.out.println(c);
public static LikeView.HorizontalAlignment 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.HorizontalAlignment>