Package com.oracle.bmc.database.model
Enum Month.Name
- java.lang.Object
- 
- java.lang.Enum<Month.Name>
- 
- com.oracle.bmc.database.model.Month.Name
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<Month.Name>
 - Enclosing class:
- Month
 
 public static enum Month.Name extends Enum<Month.Name> implements BmcEnum Name of the month of the year.
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Month.Namecreate(String key)StringgetValue()static Month.NamevalueOf(String name)Returns the enum constant of this type with the specified name.static Month.Name[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Januarypublic static final Month.Name January 
 - 
Februarypublic static final Month.Name February 
 - 
Marchpublic static final Month.Name March 
 - 
Aprilpublic static final Month.Name April 
 - 
Maypublic static final Month.Name May 
 - 
Junepublic static final Month.Name June 
 - 
Julypublic static final Month.Name July 
 - 
Augustpublic static final Month.Name August 
 - 
Septemberpublic static final Month.Name September 
 - 
Octoberpublic static final Month.Name October 
 - 
Novemberpublic static final Month.Name November 
 - 
Decemberpublic static final Month.Name December 
 - 
UnknownEnumValuepublic static final Month.Name UnknownEnumValue This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
 
- 
 - 
Method Detail- 
valuespublic static Month.Name[] 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.Name c : Month.Name.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Month.Name valueOf(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:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
createpublic static Month.Name create(String key) 
 
- 
 
-