microsoft.exchange.webservices.data
Enum Month

java.lang.Object
  extended by java.lang.Enum<Month>
      extended by microsoft.exchange.webservices.data.Month
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Month>

public enum Month
extends java.lang.Enum<Month>

Defines months of the year.


Enum Constant Summary
April
          The April.
August
          The August.
December
          The December.
February
          The February.
January
          The January.
July
          The July.
June
          The June.
March
          The March.
May
          The May.
November
          The November.
October
          The October.
September
          The September.
 
Method Summary
static Month valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Month[] 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

January

public static final Month January
The January.


February

public static final Month February
The February.


March

public static final Month March
The March.


April

public static final Month April
The April.


May

public static final Month May
The May.


June

public static final Month June
The June.


July

public static final Month July
The July.


August

public static final Month August
The August.


September

public static final Month September
The September.


October

public static final Month October
The October.


November

public static final Month November
The November.


December

public static final Month December
The December.

Method Detail

values

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

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

valueOf

public static Month 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