Package net.redhogs.cronparser
Class Options
- java.lang.Object
- 
- net.redhogs.cronparser.Options
 
- 
 public class Options extends java.lang.Object- Since:
- 10 Dec 2012 10:58:44
 
- 
- 
Constructor SummaryConstructors Constructor Description Options()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CasingTypeEnumgetCasingType()booleanisThrowExceptionOnParseError()booleanisTwentyFourHourTime()booleanisVerbose()booleanisZeroBasedDayOfWeek()If we are zero-based day of week (0 - 7) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0) If we are not zero based day of week (1 - 7) (1 to 7 are Sunday to Saturday, or use names)voidsetCasingType(CasingTypeEnum casingType)voidsetThrowExceptionOnParseError(boolean throwExceptionOnParseError)voidsetTwentyFourHourTime(boolean twentyFourHourTime)voidsetVerbose(boolean verbose)voidsetZeroBasedDayOfWeek(boolean zeroBasedDayOfWeek)If we are zero-based day of week (0 - 7) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0) If we are not zero based day of week (1 - 7) (1 to 6 are Sunday to Saturday, or use names; 7 is Saturday)static OptionstwentyFourHour()
 
- 
- 
- 
Method Detail- 
twentyFourHourpublic static Options twentyFourHour() 
 - 
isThrowExceptionOnParseErrorpublic boolean isThrowExceptionOnParseError() - Returns:
- the throwExceptionOnParseError
 
 - 
setThrowExceptionOnParseErrorpublic void setThrowExceptionOnParseError(boolean throwExceptionOnParseError) - Parameters:
- throwExceptionOnParseError- the throwExceptionOnParseError to set
 
 - 
getCasingTypepublic CasingTypeEnum getCasingType() - Returns:
- the casingType
 
 - 
setCasingTypepublic void setCasingType(CasingTypeEnum casingType) - Parameters:
- casingType- the casingType to set
 
 - 
isVerbosepublic boolean isVerbose() - Returns:
- the verbose
 
 - 
setVerbosepublic void setVerbose(boolean verbose) - Parameters:
- verbose- the verbose to set
 
 - 
setZeroBasedDayOfWeekpublic void setZeroBasedDayOfWeek(boolean zeroBasedDayOfWeek) If we are zero-based- day of week (0 - 7) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0)
 - day of week (1 - 7) (1 to 6 are Sunday to Saturday, or use names; 7 is Saturday)
 - Parameters:
- zeroBasedDayOfWeek- if we are zero-based or not
 
 - 
isZeroBasedDayOfWeekpublic boolean isZeroBasedDayOfWeek() If we are zero-based- day of week (0 - 7) (0 to 6 are Sunday to Saturday, or use names; 7 is Sunday, the same as 0)
 - day of week (1 - 7) (1 to 7 are Sunday to Saturday, or use names)
 - Returns:
- if we are zero-based or not
 
 - 
isTwentyFourHourTimepublic boolean isTwentyFourHourTime() - Returns:
- the twentyFourHourTime
 
 - 
setTwentyFourHourTimepublic void setTwentyFourHourTime(boolean twentyFourHourTime) - Parameters:
- twentyFourHourTime- the twentyFourHourTime to set
 
 
- 
 
-