クラス
com.sun.mail.imap.Rights.Right の使用

Rights.Right を使用しているパッケージ
com.sun.mail.imap IMAP メッセージ ストアへのアクセスを提供する JavaMail API の IMAP プロトコル プロバイダです。 
 

com.sun.mail.imap での Rights.Right の使用
 

Rights.Right として宣言されている com.sun.mail.imap のフィールド
static Rights.Right Rights.Right.ADMINISTER
          Administer - perform SETACL.
static Rights.Right Rights.Right.CREATE
          Create - CREATE new sub-mailboxes in any implementation-defined hierarchy, RENAME or DELETE mailbox.
static Rights.Right Rights.Right.DELETE
          Delete - STORE \DELETED flag, perform EXPUNGE.
static Rights.Right Rights.Right.INSERT
          Insert - perform APPEND, COPY into mailbox.
static Rights.Right Rights.Right.KEEP_SEEN
          Keep seen/unseen information across sessions - STORE \SEEN flag.
static Rights.Right Rights.Right.LOOKUP
          Lookup - メールボックスは LIST/LSUB コマンドで見れます。
static Rights.Right Rights.Right.POST
          Post - send mail to submission address for mailbox, not enforced by IMAP4 itself.
static Rights.Right Rights.Right.READ
          Read - メールボックスを SELECT 後、CHECK、FETCH、PARTIAL、SEARCH、COPY を実行できます。
static Rights.Right Rights.Right.WRITE
          Write - STORE flags other than \SEEN and \DELETED.
 

Rights.Right を返す com.sun.mail.imap のメソッド
static Rights.Right Rights.Right.getInstance(char right)
          Get a Right object representing the specified character.
 Rights.Right[] Rights.getRights()
          Return all the rights in this Rights object.
 

Rights.Right 型のパラメータを持つ com.sun.mail.imap のメソッド
 void Rights.add(Rights.Right right)
          Add the specified right to this Rights object.
 boolean Rights.contains(Rights.Right right)
          Check whether the specified right is present in this Rights object.
 void Rights.remove(Rights.Right right)
          Remove the specified right from this Rights object.
 

Rights.Right 型のパラメータを持つ com.sun.mail.imap のコンストラクタ
Rights(Rights.Right right)
          Construct a Rights object initialized with the given right.