Package net.redhogs.cronparser
Enum DescriptionTypeEnum
- java.lang.Object
- 
- java.lang.Enum<DescriptionTypeEnum>
- 
- net.redhogs.cronparser.DescriptionTypeEnum
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<DescriptionTypeEnum>
 
 public enum DescriptionTypeEnum extends java.lang.Enum<DescriptionTypeEnum> - Since:
- 10 Dec 2012 11:40:03
 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static DescriptionTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DescriptionTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
FULLpublic static final DescriptionTypeEnum FULL 
 - 
TIMEOFDAYpublic static final DescriptionTypeEnum TIMEOFDAY 
 - 
SECONDSpublic static final DescriptionTypeEnum SECONDS 
 - 
MINUTESpublic static final DescriptionTypeEnum MINUTES 
 - 
HOURSpublic static final DescriptionTypeEnum HOURS 
 - 
DAYOFWEEKpublic static final DescriptionTypeEnum DAYOFWEEK 
 - 
MONTHpublic static final DescriptionTypeEnum MONTH 
 - 
DAYOFMONTHpublic static final DescriptionTypeEnum DAYOFMONTH 
 - 
YEARpublic static final DescriptionTypeEnum YEAR 
 
- 
 - 
Method Detail- 
valuespublic static DescriptionTypeEnum[] 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 (DescriptionTypeEnum c : DescriptionTypeEnum.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static DescriptionTypeEnum 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
 
 
- 
 
-