Enum OnlineIndicatorPosition
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum OnlineIndicatorPosition extends Enum<OnlineIndicatorPosition>
Determines the position of online indicator in UserAvatarView and ChannelAvatarView.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<OnlineIndicatorPosition>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description TOP_STARTThe indicator is positioned at the top-start of the avatar.
TOP_ENDThe indicator is positioned at the top-end of the avatar.
BOTTOM_STARTThe indicator is positioned at the bottom-start of the avatar.
BOTTOM_ENDThe indicator is positioned at the bottom-end of the avatar.
-
Method Summary
Modifier and Type Method Description final OnlineIndicatorPositionvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<OnlineIndicatorPosition>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<OnlineIndicatorPosition>getEntries()Determines the position of online indicator in UserAvatarView and ChannelAvatarView. -
-
Method Detail
-
valueOf
final OnlineIndicatorPosition 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.)
-
values
final Array<OnlineIndicatorPosition> 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<OnlineIndicatorPosition> getEntries()
Determines the position of online indicator in UserAvatarView and ChannelAvatarView.
-
-
-
-