Enum QueueField

    • Enum Constant Detail

      • CONSUMER_ID

        public static final QueueField CONSUMER_ID
      • MAX_CONSUMERS

        public static final QueueField MAX_CONSUMERS
      • MESSAGE_COUNT

        public static final QueueField MESSAGE_COUNT
      • CONSUMER_COUNT

        public static final QueueField CONSUMER_COUNT
      • DELIVERING_COUNT

        public static final QueueField DELIVERING_COUNT
      • MESSAGES_ADDED

        public static final QueueField MESSAGES_ADDED
      • MESSAGES_ACKED

        public static final QueueField MESSAGES_ACKED
      • MESSAGES_EXPIRED

        public static final QueueField MESSAGES_EXPIRED
      • ROUTING_TYPE

        public static final QueueField ROUTING_TYPE
      • AUTO_CREATED

        public static final QueueField AUTO_CREATED
      • TEMPORARY

        public static final QueueField TEMPORARY
      • PURGE_ON_NO_CONSUMERS

        public static final QueueField PURGE_ON_NO_CONSUMERS
      • MESSAGES_KILLED

        public static final QueueField MESSAGES_KILLED
      • DIRECT_DELIVER

        public static final QueueField DIRECT_DELIVER
      • LAST_VALUE

        public static final QueueField LAST_VALUE
      • EXCLUSIVE

        public static final QueueField EXCLUSIVE
      • SCHEDULED_COUNT

        public static final QueueField SCHEDULED_COUNT
      • LAST_VALUE_KEY

        public static final QueueField LAST_VALUE_KEY
      • GROUP_REBALANCE

        public static final QueueField GROUP_REBALANCE
      • GROUP_REBALANCE_PAUSE_DISPATCH

        public static final QueueField GROUP_REBALANCE_PAUSE_DISPATCH
      • GROUP_BUCKETS

        public static final QueueField GROUP_BUCKETS
      • GROUP_FIRST_KEY

        public static final QueueField GROUP_FIRST_KEY
      • RING_SIZE

        public static final QueueField RING_SIZE
      • CONSUMERS_BEFORE_DISPATCH

        public static final QueueField CONSUMERS_BEFORE_DISPATCH
      • DELAY_BEFORE_DISPATCH

        public static final QueueField DELAY_BEFORE_DISPATCH
      • AUTO_DELETE

        public static final QueueField AUTO_DELETE
    • Method Detail

      • values

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

        public static QueueField 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
      • getName

        public String getName()