net.israfil.service.mail.api.smtp
Enum SMTPHeaderTypes

java.lang.Object
  extended by java.lang.Enum<SMTPHeaderTypes>
      extended by net.israfil.service.mail.api.smtp.SMTPHeaderTypes
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SMTPHeaderTypes>, SMTPHeaderType

public enum SMTPHeaderTypes
extends java.lang.Enum<SMTPHeaderTypes>
implements SMTPHeaderType


Enum Constant Summary
Bcc
           
Cc
           
From
           
ReplyTo
           
Subject
           
To
           
 
Method Summary
 java.lang.String getCanonicalRepresentation()
           
 boolean isSingleton()
           
static SMTPHeaderTypes valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SMTPHeaderTypes valueOfCanonicalString(java.lang.String canonical)
           
static SMTPHeaderTypes[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Cc

public static final SMTPHeaderTypes Cc

Bcc

public static final SMTPHeaderTypes Bcc

To

public static final SMTPHeaderTypes To

Subject

public static final SMTPHeaderTypes Subject

From

public static final SMTPHeaderTypes From

ReplyTo

public static final SMTPHeaderTypes ReplyTo
Method Detail

values

public static SMTPHeaderTypes[] 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 (SMTPHeaderTypes c : SMTPHeaderTypes.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SMTPHeaderTypes valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

isSingleton

public boolean isSingleton()
Specified by:
isSingleton in interface SMTPHeaderType

getCanonicalRepresentation

public java.lang.String getCanonicalRepresentation()
Specified by:
getCanonicalRepresentation in interface SMTPHeaderType

valueOfCanonicalString

public static SMTPHeaderTypes valueOfCanonicalString(java.lang.String canonical)


Copyright © 2009. All Rights Reserved.