Enum 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 Detail

      • 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 Detail

      • values

        public static Locality[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Locality c : Locality.values())
            System.out.println(c);
        
        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