Enum MessageOptionsUserReactionOrientation
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum MessageOptionsUserReactionOrientation extends Enum<MessageOptionsUserReactionOrientation>
Determines the orientation of the reaction bubble inside message options user reactions.
-
-
Field Summary
Fields Modifier and Type Field Description private final Integervalueprivate final Stringnameprivate final Integerordinalprivate final EnumEntries<MessageOptionsUserReactionOrientation>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description STARTOrients the reaction to the start of the user avatar.
ENDOrients the reaction to the end of user avatar.
BY_USEROrients the reaction to the end of user avatar if the reaction is from the current user otherwise orients it to the start of the avatar.
BY_USER_INVERTEDOrients the reaction to the start of user avatar if the reaction is from the current user otherwise orients it to the end of the avatar.
-
Method Summary
Modifier and Type Method Description final MessageOptionsUserReactionOrientationvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<MessageOptionsUserReactionOrientation>values()Returns an array containing the constants of this enum type, in the order they're declared. final IntegergetValue()final EnumEntries<MessageOptionsUserReactionOrientation>getEntries()Determines the orientation of the reaction bubble inside message options user reactions. -
-
Method Detail
-
valueOf
final MessageOptionsUserReactionOrientation 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<MessageOptionsUserReactionOrientation> 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<MessageOptionsUserReactionOrientation> getEntries()
Determines the orientation of the reaction bubble inside message options user reactions.
-
-
-
-