com.stimulsoft.data.functons
Enum StiMonth

java.lang.Object
  extended by java.lang.Enum<StiMonth>
      extended by com.stimulsoft.data.functons.StiMonth
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StiMonth>

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

Copyright Stimulsoft


Enum Constant Summary
April
           
August
           
December
           
February
           
January
           
July
           
June
           
March
           
May
           
November
           
October
           
September
           
 
Method Summary
static StiMonth valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiMonth[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, 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 StiMonth January

February

public static final StiMonth February

March

public static final StiMonth March

April

public static final StiMonth April

May

public static final StiMonth May

June

public static final StiMonth June

July

public static final StiMonth July

August

public static final StiMonth August

September

public static final StiMonth September

October

public static final StiMonth October

November

public static final StiMonth November

December

public static final StiMonth December
Method Detail

values

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

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

valueOf

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