Enum Class Privacy
- All Implemented Interfaces:
Serializable,Comparable<Privacy>,Constable
Privacy represents a restriction on who can use the ability.
- Author:
- Abbas Abou Daya
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA global admin of the bot, regardless of the group the bot is in.The creator of the bot.Only group admins would get to initiate this command.Anybody who is not a bot admin or its creator will be considered as a public user. -
Method Summary
-
Enum Constant Details
-
PUBLIC
Anybody who is not a bot admin or its creator will be considered as a public user. -
GROUP_ADMIN
Only group admins would get to initiate this command. -
ADMIN
A global admin of the bot, regardless of the group the bot is in. -
CREATOR
The creator of the bot.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-