Enum MessageOptionsUserReactionAlignment
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum MessageOptionsUserReactionAlignment extends Enum<MessageOptionsUserReactionAlignment>
Determines the alignment of the reaction icon inside user reactions.
-
-
Field Summary
Fields Modifier and Type Field Description private final Integervalueprivate final Stringnameprivate final Integerordinalprivate final EnumEntries<MessageOptionsUserReactionAlignment>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description STARTAligns the reaction to the start of the user avatar.
ENDAligns the reaction to the end of user avatar.
BY_USERAligns the reaction to the end of user avatar if the reaction is from the current user otherwise aligns it to the start of the avatar.
BY_USER_INVERTEDAligns the reaction to the start of user avatar if the reaction is from the current user otherwise aligns it to the end of the avatar.
-
Method Summary
Modifier and Type Method Description final MessageOptionsUserReactionAlignmentvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<MessageOptionsUserReactionAlignment>values()Returns an array containing the constants of this enum type, in the order they're declared. final IntegergetValue()final EnumEntries<MessageOptionsUserReactionAlignment>getEntries()Determines the alignment of the reaction icon inside user reactions. -
-
Method Detail
-
valueOf
final MessageOptionsUserReactionAlignment valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Parameters:
value- The int value of the enum used for xml attributes.
-
values
final Array<MessageOptionsUserReactionAlignment> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<MessageOptionsUserReactionAlignment> getEntries()
Determines the alignment of the reaction icon inside user reactions.
-
-
-
-