Java Doc for DailyCalendar.java in  » Project-Management » quartz » org » quartz » impl » calendar » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Project Management » quartz » org.quartz.impl.calendar 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.quartz.impl.calendar.BaseCalendar
      org.quartz.impl.calendar.DailyCalendar

DailyCalendar
public class DailyCalendar extends BaseCalendar (Code)
This implementation of the Calendar excludes (or includes - see below) a specified time range each day. For example, you could use this calendar to exclude business hours (8AM - 5PM) every day. Each DailyCalendar only allows a single time range to be specified, and that time range may not cross daily boundaries (i.e. you cannot specify a time range from 8PM - 5AM). If the property invertTimeRange is false (default), the time range defines a range of times in which triggers are not allowed to fire. If invertTimeRange is true, the time range is inverted – that is, all times outside the defined time range are excluded.

Note when using DailyCalendar, it behaves on the same principals as, for example, org.quartz.impl.calendar.WeeklyCalendar WeeklyCalendar . WeeklyCalendar defines a set of days that are excluded every week. Likewise, DailyCalendar defines a set of times that are excluded every day.
author:
   Mike Funk, Aaron Craven



Field Summary
final static  longserialVersionUID
    

Constructor Summary
public  DailyCalendar(String rangeStartingTime, String rangeEndingTime)
     Create a DailyCalendar with a time range defined by the specified strings and no baseCalendar.
public  DailyCalendar(org.quartz.Calendar baseCalendar, String rangeStartingTime, String rangeEndingTime)
     Create a DailyCalendar with a time range defined by the specified strings and the specified baseCalendar.
public  DailyCalendar(int rangeStartingHourOfDay, int rangeStartingMinute, int rangeStartingSecond, int rangeStartingMillis, int rangeEndingHourOfDay, int rangeEndingMinute, int rangeEndingSecond, int rangeEndingMillis)
     Create a DailyCalendar with a time range defined by the specified values and no baseCalendar.
public  DailyCalendar(org.quartz.Calendar baseCalendar, int rangeStartingHourOfDay, int rangeStartingMinute, int rangeStartingSecond, int rangeStartingMillis, int rangeEndingHourOfDay, int rangeEndingMinute, int rangeEndingSecond, int rangeEndingMillis)
     Create a DailyCalendar with a time range defined by the specified values and the specified baseCalendar.
public  DailyCalendar(Calendar rangeStartingCalendar, Calendar rangeEndingCalendar)
     Create a DailyCalendar with a time range defined by the specified java.util.Calendars and no baseCalendar.
public  DailyCalendar(org.quartz.Calendar baseCalendar, Calendar rangeStartingCalendar, Calendar rangeEndingCalendar)
     Create a DailyCalendar with a time range defined by the specified java.util.Calendars and the specified baseCalendar.
public  DailyCalendar(long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)
     Create a DailyCalendar with a time range defined by the specified values and no baseCalendar.
public  DailyCalendar(org.quartz.Calendar baseCalendar, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)
     Create a DailyCalendar with a time range defined by the specified values and the specified baseCalendar.
public  DailyCalendar(TimeZone timeZone, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)
     Create a DailyCalendar with a time range defined by the specified values and no baseCalendar.
public  DailyCalendar(org.quartz.Calendar baseCalendar, TimeZone timeZone, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)
     Create a DailyCalendar with a time range defined by the specified values and the specified baseCalendar.
public  DailyCalendar(String name, String rangeStartingTime, String rangeEndingTime)
    
public  DailyCalendar(String name, org.quartz.Calendar baseCalendar, String rangeStartingTime, String rangeEndingTime)
    
public  DailyCalendar(String name, int rangeStartingHourOfDay, int rangeStartingMinute, int rangeStartingSecond, int rangeStartingMillis, int rangeEndingHourOfDay, int rangeEndingMinute, int rangeEndingSecond, int rangeEndingMillis)
    
public  DailyCalendar(String name, org.quartz.Calendar baseCalendar, int rangeStartingHourOfDay, int rangeStartingMinute, int rangeStartingSecond, int rangeStartingMillis, int rangeEndingHourOfDay, int rangeEndingMinute, int rangeEndingSecond, int rangeEndingMillis)
    
public  DailyCalendar(String name, Calendar rangeStartingCalendar, Calendar rangeEndingCalendar)
    
public  DailyCalendar(String name, org.quartz.Calendar baseCalendar, Calendar rangeStartingCalendar, Calendar rangeEndingCalendar)
    
public  DailyCalendar(String name, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)
    
public  DailyCalendar(String name, org.quartz.Calendar baseCalendar, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)
    
public  DailyCalendar(String name, TimeZone timeZone, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)
    
public  DailyCalendar(String name, org.quartz.Calendar baseCalendar, TimeZone timeZone, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)
    

Method Summary
public  booleangetInvertTimeRange()
     Indicates whether the time range represents an inverted time range (see class description).
public  StringgetName()
    
public  longgetNextIncludedTime(long timeInMillis)
     Determines the next time included by the DailyCalendar after the specified time.
public  longgetTimeRangeEndingTimeInMillis(long timeInMillis)
     Returns the end time of the time range (in milliseconds) of the day specified in timeInMillis
Parameters:
  timeInMillis - a time containing the desired date for the endingtime of the time range.
public  longgetTimeRangeStartingTimeInMillis(long timeInMillis)
     Returns the start time of the time range (in milliseconds) of the day specified in timeInMillis
Parameters:
  timeInMillis - a time containing the desired date for the startingtime of the time range.
public  booleanisTimeIncluded(long timeInMillis)
    
public  voidsetInvertTimeRange(boolean flag)
     Indicates whether the time range represents an inverted time range (see class description).
public  StringtoString()
    

Field Detail
serialVersionUID
final static long serialVersionUID(Code)




Constructor Detail
DailyCalendar
public DailyCalendar(String rangeStartingTime, String rangeEndingTime)(Code)
Create a DailyCalendar with a time range defined by the specified strings and no baseCalendar. rangeStartingTime and rangeEndingTime must be in the format "HH:MM[:SS[:mmm]]" where:
  • HH is the hour of the specified time. The hour should be specified using military (24-hour) time and must be in the range 0 to 23.
  • MM is the minute of the specified time and must be in the range 0 to 59.
  • SS is the second of the specified time and must be in the range 0 to 59.
  • mmm is the millisecond of the specified time and must be in the range 0 to 999.
  • items enclosed in brackets ('[', ']') are optional.
  • The time range starting time must be before the time range ending time. Note this means that a time range may not cross daily boundaries (10PM - 2AM)

Note: This DailyCalendar will use the TimeZone.getDefault time zone unless an explicit time zone is set via BaseCalendar.setTimeZone(TimeZone)


Parameters:
  rangeStartingTime - a String representing the starting time for thetime range
Parameters:
  rangeEndingTime - a String representing the ending time for thethe time range



DailyCalendar
public DailyCalendar(org.quartz.Calendar baseCalendar, String rangeStartingTime, String rangeEndingTime)(Code)
Create a DailyCalendar with a time range defined by the specified strings and the specified baseCalendar. rangeStartingTime and rangeEndingTime must be in the format "HH:MM[:SS[:mmm]]" where:
  • HH is the hour of the specified time. The hour should be specified using military (24-hour) time and must be in the range 0 to 23.
  • MM is the minute of the specified time and must be in the range 0 to 59.
  • SS is the second of the specified time and must be in the range 0 to 59.
  • mmm is the millisecond of the specified time and must be in the range 0 to 999.
  • items enclosed in brackets ('[', ']') are optional.
  • The time range starting time must be before the time range ending time. Note this means that a time range may not cross daily boundaries (10PM - 2AM)

Note: This DailyCalendar will use the TimeZone.getDefault time zone unless an explicit time zone is set via BaseCalendar.setTimeZone(TimeZone)


Parameters:
  baseCalendar - the base calendar for this calendar instance– see BaseCalendar for moreinformation on base calendar functionality
Parameters:
  rangeStartingTime - a String representing the starting time for thetime range
Parameters:
  rangeEndingTime - a String representing the ending time for thetime range



DailyCalendar
public DailyCalendar(int rangeStartingHourOfDay, int rangeStartingMinute, int rangeStartingSecond, int rangeStartingMillis, int rangeEndingHourOfDay, int rangeEndingMinute, int rangeEndingSecond, int rangeEndingMillis)(Code)
Create a DailyCalendar with a time range defined by the specified values and no baseCalendar. Values are subject to the following validations:
  • Hours must be in the range 0-23 and are expressed using military (24-hour) time.
  • Minutes must be in the range 0-59
  • Seconds must be in the range 0-59
  • Milliseconds must be in the range 0-999
  • The time range starting time must be before the time range ending time. Note this means that a time range may not cross daily boundaries (10PM - 2AM)

Note: This DailyCalendar will use the TimeZone.getDefault time zone unless an explicit time zone is set via BaseCalendar.setTimeZone(TimeZone)


Parameters:
  rangeStartingHourOfDay - the hour of the start of the time range
Parameters:
  rangeStartingMinute - the minute of the start of the time range
Parameters:
  rangeStartingSecond - the second of the start of the time range
Parameters:
  rangeStartingMillis - the millisecond of the start of the time range
Parameters:
  rangeEndingHourOfDay - the hour of the end of the time range
Parameters:
  rangeEndingMinute - the minute of the end of the time range
Parameters:
  rangeEndingSecond - the second of the end of the time range
Parameters:
  rangeEndingMillis - the millisecond of the start of the time range



DailyCalendar
public DailyCalendar(org.quartz.Calendar baseCalendar, int rangeStartingHourOfDay, int rangeStartingMinute, int rangeStartingSecond, int rangeStartingMillis, int rangeEndingHourOfDay, int rangeEndingMinute, int rangeEndingSecond, int rangeEndingMillis)(Code)
Create a DailyCalendar with a time range defined by the specified values and the specified baseCalendar. Values are subject to the following validations:
  • Hours must be in the range 0-23 and are expressed using military (24-hour) time.
  • Minutes must be in the range 0-59
  • Seconds must be in the range 0-59
  • Milliseconds must be in the range 0-999
  • The time range starting time must be before the time range ending time. Note this means that a time range may not cross daily boundaries (10PM - 2AM)

Note: This DailyCalendar will use the TimeZone.getDefault time zone unless an explicit time zone is set via BaseCalendar.setTimeZone(TimeZone)


Parameters:
  baseCalendar - the base calendar for this calendarinstance – see BaseCalendar for more information on base calendar functionality
Parameters:
  rangeStartingHourOfDay - the hour of the start of the time range
Parameters:
  rangeStartingMinute - the minute of the start of the time range
Parameters:
  rangeStartingSecond - the second of the start of the time range
Parameters:
  rangeStartingMillis - the millisecond of the start of the time range
Parameters:
  rangeEndingHourOfDay - the hour of the end of the time range
Parameters:
  rangeEndingMinute - the minute of the end of the time range
Parameters:
  rangeEndingSecond - the second of the end of the time range
Parameters:
  rangeEndingMillis - the millisecond of the start of the time range



DailyCalendar
public DailyCalendar(Calendar rangeStartingCalendar, Calendar rangeEndingCalendar)(Code)
Create a DailyCalendar with a time range defined by the specified java.util.Calendars and no baseCalendar. The Calendars are subject to the following considerations:
  • Only the time-of-day fields of the specified Calendars will be used (the date fields will be ignored)
  • The starting time must be before the ending time of the defined time range. Note this means that a time range may not cross daily boundaries (10PM - 2AM). (because only time fields are are used, it is possible for two Calendars to represent a valid time range and rangeStartingCalendar.after(rangeEndingCalendar) == true)

Note: This DailyCalendar will use the TimeZone.getDefault time zone unless an explicit time zone is set via BaseCalendar.setTimeZone(TimeZone)


Parameters:
  rangeStartingCalendar - a java.util.Calendar representing the starting time for the time range
Parameters:
  rangeEndingCalendar - a java.util.Calendar representing the endingtime for the time range



DailyCalendar
public DailyCalendar(org.quartz.Calendar baseCalendar, Calendar rangeStartingCalendar, Calendar rangeEndingCalendar)(Code)
Create a DailyCalendar with a time range defined by the specified java.util.Calendars and the specified baseCalendar. The Calendars are subject to the following considerations:
  • Only the time-of-day fields of the specified Calendars will be used (the date fields will be ignored)
  • The starting time must be before the ending time of the defined time range. Note this means that a time range may not cross daily boundaries (10PM - 2AM). (because only time fields are are used, it is possible for two Calendars to represent a valid time range and rangeStartingCalendar.after(rangeEndingCalendar) == true)

Note: This DailyCalendar will use the TimeZone.getDefault time zone unless an explicit time zone is set via BaseCalendar.setTimeZone(TimeZone)


Parameters:
  baseCalendar - the base calendar for this calendar instance– see BaseCalendar for more information on base calendar functionality
Parameters:
  rangeStartingCalendar - a java.util.Calendar representing the starting time for the time range
Parameters:
  rangeEndingCalendar - a java.util.Calendar representing the endingtime for the time range



DailyCalendar
public DailyCalendar(long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)(Code)
Create a DailyCalendar with a time range defined by the specified values and no baseCalendar. The values are subject to the following considerations:
  • Only the time-of-day portion of the specified values will be used
  • The starting time must be before the ending time of the defined time range. Note this means that a time range may not cross daily boundaries (10PM - 2AM). (because only time value are are used, it is possible for the two values to represent a valid time range and rangeStartingTime > rangeEndingTime)

Note: This DailyCalendar will use the TimeZone.getDefault time zone unless an explicit time zone is set via BaseCalendar.setTimeZone(TimeZone) . You should use DailyCalendar.DailyCalendar(String,TimeZone,long,long) if you don't want the given rangeStartingTimeInMillis and rangeEndingTimeInMillis to be evaluated in the default time zone.


Parameters:
  rangeStartingTimeInMillis - a long representing the starting time for the time range
Parameters:
  rangeEndingTimeInMillis - a long representing the ending time forthe time range



DailyCalendar
public DailyCalendar(org.quartz.Calendar baseCalendar, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)(Code)
Create a DailyCalendar with a time range defined by the specified values and the specified baseCalendar. The values are subject to the following considerations:
  • Only the time-of-day portion of the specified values will be used
  • The starting time must be before the ending time of the defined time range. Note this means that a time range may not cross daily boundaries (10PM - 2AM). (because only time value are are used, it is possible for the two values to represent a valid time range and rangeStartingTime > rangeEndingTime)

Note: This DailyCalendar will use the TimeZone.getDefault time zone unless an explicit time zone is set via BaseCalendar.setTimeZone(TimeZone) . You should use DailyCalendar.DailyCalendar(String,Calendar,TimeZone,long,long) if you don't want the given rangeStartingTimeInMillis and rangeEndingTimeInMillis to be evaluated in the default time zone.


Parameters:
  baseCalendar - the base calendar for this calendarinstance – see BaseCalendar for more information on base calendar functionality
Parameters:
  rangeStartingTimeInMillis - a long representing the starting time for the time range
Parameters:
  rangeEndingTimeInMillis - a long representing the ending time forthe time range



DailyCalendar
public DailyCalendar(TimeZone timeZone, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)(Code)
Create a DailyCalendar with a time range defined by the specified values and no baseCalendar. The values are subject to the following considerations:
  • Only the time-of-day portion of the specified values will be used
  • The starting time must be before the ending time of the defined time range. Note this means that a time range may not cross daily boundaries (10PM - 2AM). (because only time value are are used, it is possible for the two values to represent a valid time range and rangeStartingTime > rangeEndingTime)

Parameters:
  timeZone - the time zone for of the DailyCalendar which will also be used to resolve the given start/end times.
Parameters:
  rangeStartingTimeInMillis - a long representing the starting time for the time range
Parameters:
  rangeEndingTimeInMillis - a long representing the ending time forthe time range



DailyCalendar
public DailyCalendar(org.quartz.Calendar baseCalendar, TimeZone timeZone, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)(Code)
Create a DailyCalendar with a time range defined by the specified values and the specified baseCalendar. The values are subject to the following considerations:
  • Only the time-of-day portion of the specified values will be used
  • The starting time must be before the ending time of the defined time range. Note this means that a time range may not cross daily boundaries (10PM - 2AM). (because only time value are are used, it is possible for the two values to represent a valid time range and rangeStartingTime > rangeEndingTime)

Parameters:
  baseCalendar - the base calendar for this calendarinstance – see BaseCalendar for more information on base calendar functionality
Parameters:
  timeZone - the time zone for of the DailyCalendar which will also be used to resolve the given start/end times.
Parameters:
  rangeStartingTimeInMillis - a long representing the starting time for the time range
Parameters:
  rangeEndingTimeInMillis - a long representing the ending time forthe time range



DailyCalendar
public DailyCalendar(String name, String rangeStartingTime, String rangeEndingTime)(Code)

See Also:   DailyCalendar.DailyCalendar(StringString)



DailyCalendar
public DailyCalendar(String name, org.quartz.Calendar baseCalendar, String rangeStartingTime, String rangeEndingTime)(Code)

See Also:   DailyCalendar.DailyCalendar(org.quartz.CalendarStringString)



DailyCalendar
public DailyCalendar(String name, int rangeStartingHourOfDay, int rangeStartingMinute, int rangeStartingSecond, int rangeStartingMillis, int rangeEndingHourOfDay, int rangeEndingMinute, int rangeEndingSecond, int rangeEndingMillis)(Code)

See Also:   DailyCalendar.DailyCalendar(intintintintintintintint)



DailyCalendar
public DailyCalendar(String name, org.quartz.Calendar baseCalendar, int rangeStartingHourOfDay, int rangeStartingMinute, int rangeStartingSecond, int rangeStartingMillis, int rangeEndingHourOfDay, int rangeEndingMinute, int rangeEndingSecond, int rangeEndingMillis)(Code)

See Also:   DailyCalendar.DailyCalendar(org.quartz.Calendarintintintintintintintint)



DailyCalendar
public DailyCalendar(String name, Calendar rangeStartingCalendar, Calendar rangeEndingCalendar)(Code)

See Also:   DailyCalendar.DailyCalendar(CalendarCalendar)



DailyCalendar
public DailyCalendar(String name, org.quartz.Calendar baseCalendar, Calendar rangeStartingCalendar, Calendar rangeEndingCalendar)(Code)

See Also:   DailyCalendar.DailyCalendar(org.quartz.CalendarCalendarCalendar)



DailyCalendar
public DailyCalendar(String name, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)(Code)

See Also:   DailyCalendar.DailyCalendar(longlong)



DailyCalendar
public DailyCalendar(String name, org.quartz.Calendar baseCalendar, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)(Code)

See Also:   DailyCalendar.DailyCalendar(org.quartz.Calendarlonglong)



DailyCalendar
public DailyCalendar(String name, TimeZone timeZone, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)(Code)

See Also:   DailyCalendar.DailyCalendar(TimeZonelonglong)



DailyCalendar
public DailyCalendar(String name, org.quartz.Calendar baseCalendar, TimeZone timeZone, long rangeStartingTimeInMillis, long rangeEndingTimeInMillis)(Code)

See Also:   DailyCalendar.DailyCalendar(org.quartz.CalendarTimeZonelonglong)




Method Detail
getInvertTimeRange
public boolean getInvertTimeRange()(Code)
Indicates whether the time range represents an inverted time range (see class description). a boolean indicating whether the time range is inverted



getName
public String getName()(Code)
Returns the name of the DailyCalendar the name of the DailyCalendar



getNextIncludedTime
public long getNextIncludedTime(long timeInMillis)(Code)
Determines the next time included by the DailyCalendar after the specified time.
Parameters:
  timeInMillis - the initial date/time after which to find an included time the time in milliseconds representing the next time includedafter the specified time.



getTimeRangeEndingTimeInMillis
public long getTimeRangeEndingTimeInMillis(long timeInMillis)(Code)
Returns the end time of the time range (in milliseconds) of the day specified in timeInMillis
Parameters:
  timeInMillis - a time containing the desired date for the endingtime of the time range. a date/time (in milliseconds) representing the end time of thetime range for the specified date.



getTimeRangeStartingTimeInMillis
public long getTimeRangeStartingTimeInMillis(long timeInMillis)(Code)
Returns the start time of the time range (in milliseconds) of the day specified in timeInMillis
Parameters:
  timeInMillis - a time containing the desired date for the startingtime of the time range. a date/time (in milliseconds) representing the start time of thetime range for the specified date.



isTimeIncluded
public boolean isTimeIncluded(long timeInMillis)(Code)
Determines whether the given time (in milliseconds) is 'included' by the BaseCalendar
Parameters:
  timeInMillis - the date/time to test a boolean indicating whether the specified time is 'included' bythe BaseCalendar



setInvertTimeRange
public void setInvertTimeRange(boolean flag)(Code)
Indicates whether the time range represents an inverted time range (see class description).
Parameters:
  flag - the new value for the invertTimeRange flag.



toString
public String toString()(Code)
Returns a string representing the properties of the DailyCalendar the properteis of the DailyCalendar in a String format



Fields inherited from org.quartz.impl.calendar.BaseCalendar
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from org.quartz.impl.calendar.BaseCalendar
public static Date buildHoliday(Date excludedDate)(Code)(Java Doc)
public static long buildHoliday(long timeStamp)(Code)(Java Doc)
protected java.util.Calendar createJavaCalendar(long timeStamp)(Code)(Java Doc)
protected java.util.Calendar createJavaCalendar()(Code)(Java Doc)
public Calendar getBaseCalendar()(Code)(Java Doc)
public String getDescription()(Code)(Java Doc)
protected java.util.Calendar getEndOfDayJavaCalendar(long timeInMillis)(Code)(Java Doc)
public static java.util.Calendar getJavaCalendar(long timeStamp)(Code)(Java Doc)
public long getNextIncludedTime(long timeStamp)(Code)(Java Doc)
protected java.util.Calendar getStartOfDayJavaCalendar(long timeInMillis)(Code)(Java Doc)
public TimeZone getTimeZone()(Code)(Java Doc)
public boolean isTimeIncluded(long timeStamp)(Code)(Java Doc)
public void setBaseCalendar(Calendar baseCalendar)(Code)(Java Doc)
public void setDescription(String description)(Code)(Java Doc)
public void setTimeZone(TimeZone timeZone)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.