Enum CustomOperationScope

    • Enum Constant Detail

      • CONTACT_INFO

        public static final CustomOperationScope CONTACT_INFO
        A custom operation over a public contact information
      • BULK_ACTION

        public static final CustomOperationScope BULK_ACTION
        A custom operation to be executed as a bulk action over a set of users
      • MENU

        public static final CustomOperationScope MENU
        A custom operation which is visible in a custom menu item
      • INTERNAL

        public static final CustomOperationScope INTERNAL
        A custom operation which is executed by another custom operation
      • ADVERTISEMENT

        public static final CustomOperationScope ADVERTISEMENT
        A custom operation over an advertisement
    • Method Detail

      • values

        public static CustomOperationScope[] 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 (CustomOperationScope c : CustomOperationScope.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CustomOperationScope 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