Enum Locality

java.lang.Object
java.lang.Enum<Locality>
org.telegram.abilitybots.api.objects.Locality
All Implemented Interfaces:
Serializable, Comparable<Locality>

public enum Locality extends Enum<Locality>
Locality identifies the location in which you want your message to be accessed.

If locality of your message is set to USER, then the ability will only be executed if its being called in a user private chat.

Author:
Abbas Abou Daya
  • Enum Constant Details

    • ALL

      public static final Locality ALL
      Ability would be valid for groups and private user chats
    • USER

      public static final Locality USER
      Only user chats
    • GROUP

      public static final Locality GROUP
      Only group chats
  • Method Details

    • values

      public static Locality[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Locality valueOf(String name)
      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:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null