Package com.sun.mail.imap.protocol
Class MessageSet
- java.lang.Object
-
- com.sun.mail.imap.protocol.MessageSet
-
public class MessageSet extends java.lang.ObjectThis class holds the 'start' and 'end' for a range of messages.
-
-
Constructor Summary
Constructors Constructor Description MessageSet()MessageSet(int start, int end)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MessageSet[]createMessageSets(int[] msgs)Convert an array of integers into an array of MessageSetsintsize()Count the total number of elements in a MessageSetstatic intsize(MessageSet[] msgsets)static java.lang.StringtoString(MessageSet[] msgsets)Convert an array of MessageSets into an IMAP sequence range
-
-
-
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 java.lang.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)
-
-