java.lang.Object | +--org.apache.commons.net.pop3.POP3MessageInfo
String | |
int | POP3MessageInfo is used to return information about messages stored on a POP3 server. |
int |
Creates a POP3MessageInfo instance with number and size set to 0, and identifier set to null. |
POP3MessageInfo(int num, int octets) Creates a POP3MessageInfo instance with number set to num , size set to octets , and identifier set to null. |
POP3MessageInfo(int num, String uid) Creates a POP3MessageInfo instance with number set to num , size undefined, and identifier set to uid. |
public String identifier
public int number
number
contains the number of messages in the mailbox, size
contains the size of the mailbox in bytes, and identifier
is null.
In response to a message listings, number
contains the message number, size contains the
size of the message in bytes, and identifier is null.
In response to unique identifier listings, number contains
the message number, size is undefined, and
identifier contains the message's unique identifier.
public int size
public POP3MessageInfo()
number and
size set to 0, and identifier set to
null.
public POP3MessageInfo(int num, String uid)
number set
to num , size undefined,
and identifier set to uid.
public POP3MessageInfo(int num, int octets)
number set
to num , size set to octets ,
and identifier set to null.
numbercontains the number of messages in the mailbox,sizecontains the size of the mailbox in bytes, andidentifieris null. In response to a message listings,numbercontains the message number,sizecontains the size of the message in bytes, andidentifieris null. In response to unique identifier listings,numbercontains the message number,sizeis undefined, andidentifiercontains the message's unique identifier.