Codota Logo
CalendarIntervalTriggerImpl.getStartTime
Code IndexAdd Codota to your IDE (free)

How to use
getStartTime
method
in
org.quartz.impl.triggers.CalendarIntervalTriggerImpl

Best Java code snippets using org.quartz.impl.triggers.CalendarIntervalTriggerImpl.getStartTime (Showing top 6 results out of 315)

  • Common ways to obtain CalendarIntervalTriggerImpl
private void myMethod () {
CalendarIntervalTriggerImpl c =
  • Codota Iconnew CalendarIntervalTriggerImpl()
  • Smart code suggestions by Codota
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Set the time at which the <code>DateIntervalTrigger</code> should quit
 * repeating (and be automatically deleted).
 * </p>
 * 
 * @exception IllegalArgumentException
 *              if endTime is before start time.
 */
@Override
public void setEndTime(Date endTime) {
  Date sTime = getStartTime();
  if (sTime != null && endTime != null && sTime.after(endTime)) {
    throw new IllegalArgumentException(
        "End time cannot be before start time");
  }
  this.endTime = endTime;
}
origin: quartz-scheduler/quartz

/**
 * <p>
 * Set the time at which the <code>DateIntervalTrigger</code> should quit
 * repeating (and be automatically deleted).
 * </p>
 * 
 * @exception IllegalArgumentException
 *              if endTime is before start time.
 */
@Override
public void setEndTime(Date endTime) {
  Date sTime = getStartTime();
  if (sTime != null && endTime != null && sTime.after(endTime)) {
    throw new IllegalArgumentException(
        "End time cannot be before start time");
  }
  this.endTime = endTime;
}
origin: quartz-scheduler/quartz

nextFireTime = getStartTime();
origin: quartz-scheduler/quartz

nextFireTime = getStartTime();
origin: quartz-scheduler/quartz

long startMillis = getStartTime().getTime();
long afterMillis = afterTime.getTime();
long endMillis = (getEndTime() == null) ? Long.MAX_VALUE : getEndTime()
if(timeZone != null)
  sTime.setTimeZone(timeZone);
sTime.setTime(getStartTime());
sTime.setLenient(true);
origin: quartz-scheduler/quartz

long startMillis = getStartTime().getTime();
long afterMillis = afterTime.getTime();
long endMillis = (getEndTime() == null) ? Long.MAX_VALUE : getEndTime()
if(timeZone != null)
  sTime.setTimeZone(timeZone);
sTime.setTime(getStartTime());
sTime.setLenient(true);
org.quartz.impl.triggersCalendarIntervalTriggerImplgetStartTime

Javadoc

Get the time at which the DateIntervalTrigger should occur.

Popular methods of CalendarIntervalTriggerImpl

  • <init>
    Create a DateIntervalTrigger that will occur immediately, and repeat at the the given interval.
  • getRepeatInterval
  • getRepeatIntervalUnit
  • getTimeZone
  • getTimesTriggered
  • setRepeatInterval
  • setRepeatIntervalUnit
  • setTimeZone
  • daylightSavingHourShiftOccurredAndAdvanceNeeded
  • getEndTime
    Get the time at which the DateIntervalTrigger should quit repeating.
  • getFireTimeAfter
  • getMisfireInstruction
  • getFireTimeAfter,
  • getMisfireInstruction,
  • getNextFireTime,
  • hasAdditionalProperties,
  • isPreserveHourOfDayAcrossDaylightSavings,
  • isSkipDayIfHourDoesNotExist,
  • setEndTime,
  • setMisfireInstruction,
  • setNextFireTime

Popular in Java

  • Start an intent from android
  • runOnUiThread (Activity)
  • startActivity (Activity)
  • putExtra (Intent)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • MalformedURLException (java.net)
    Thrown to indicate that a malformed URL has occurred. Either no legal protocol could be found in a s
  • JFileChooser (javax.swing)
  • JFrame (javax.swing)
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now