Enum CronFieldType
- java.lang.Object
-
- java.lang.Enum<CronFieldType>
-
- cn.boboweike.carrot.scheduling.cron.CronFieldType
-
- All Implemented Interfaces:
Serializable,Comparable<CronFieldType>
public enum CronFieldType extends Enum<CronFieldType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BitSetfillBitSet(int from, int toExcluded)BitSetfillBitSetToIncl(int from, int toIncluded)StringgetFieldName()intgetLength()intgetMaxAllowedValue()intgetMinAllowedValue()BitSetparseAsterisk()BitSetparseLastDayOfMonth()voidsetBitSet(BitSet bitSet, int number)static CronFieldTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CronFieldType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SECOND
public static final CronFieldType SECOND
-
MINUTE
public static final CronFieldType MINUTE
-
HOUR
public static final CronFieldType HOUR
-
DAY
public static final CronFieldType DAY
-
MONTH
public static final CronFieldType MONTH
-
DAY_OF_WEEK
public static final CronFieldType DAY_OF_WEEK
-
-
Method Detail
-
values
public static CronFieldType[] 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 (CronFieldType c : CronFieldType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CronFieldType 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 nameNullPointerException- if the argument is null
-
getFieldName
public String getFieldName()
-
getLength
public int getLength()
-
getMinAllowedValue
public int getMinAllowedValue()
-
getMaxAllowedValue
public int getMaxAllowedValue()
-
parseAsterisk
public BitSet parseAsterisk()
-
parseLastDayOfMonth
public BitSet parseLastDayOfMonth()
-
fillBitSetToIncl
public BitSet fillBitSetToIncl(int from, int toIncluded)
-
fillBitSet
public BitSet fillBitSet(int from, int toExcluded)
-
setBitSet
public void setBitSet(BitSet bitSet, int number)
-
-