Class MessageSet


  • public class MessageSet
    extends Object
    This class holds the 'start' and 'end' for a range of messages.
    • Field Detail

      • start

        public int start
      • end

        public int end
    • Constructor Detail

      • MessageSet

        public MessageSet()
      • MessageSet

        public MessageSet​(int start,
                          int end)
    • Method Detail

      • size

        public int size()
        Count the total number of elements in a MessageSet
        Returns:
        how many messages in this MessageSet
      • createMessageSets

        public static MessageSet[] createMessageSets​(int[] msgs)
        Convert an array of integers into an array of MessageSets
        Parameters:
        msgs - the messages
        Returns:
        array of MessageSet objects
      • toString

        public static String toString​(MessageSet[] msgsets)
        Convert an array of MessageSets into an IMAP sequence range
        Parameters:
        msgsets - the MessageSets
        Returns:
        IMAP sequence string
      • size

        public static int size​(MessageSet[] msgsets)