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

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

Best Java code snippets using org.quartz.impl.triggers.CalendarIntervalTriggerImpl.getTimeZone (Showing top 3 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

@Override
protected SimplePropertiesTriggerProperties getTriggerProperties(OperableTrigger trigger) {
  CalendarIntervalTriggerImpl calTrig = (CalendarIntervalTriggerImpl)trigger;
  
  SimplePropertiesTriggerProperties props = new SimplePropertiesTriggerProperties();
  
  props.setInt1(calTrig.getRepeatInterval());
  props.setString1(calTrig.getRepeatIntervalUnit().name());
  props.setInt2(calTrig.getTimesTriggered());
  props.setString2(calTrig.getTimeZone().getID());
  props.setBoolean1(calTrig.isPreserveHourOfDayAcrossDaylightSavings());
  props.setBoolean2(calTrig.isSkipDayIfHourDoesNotExist());
  
  return props;
}
origin: quartz-scheduler/quartz

@Override
protected SimplePropertiesTriggerProperties getTriggerProperties(OperableTrigger trigger) {
  CalendarIntervalTriggerImpl calTrig = (CalendarIntervalTriggerImpl)trigger;
  
  SimplePropertiesTriggerProperties props = new SimplePropertiesTriggerProperties();
  
  props.setInt1(calTrig.getRepeatInterval());
  props.setString1(calTrig.getRepeatIntervalUnit().name());
  props.setInt2(calTrig.getTimesTriggered());
  props.setString2(calTrig.getTimeZone().getID());
  props.setBoolean1(calTrig.isPreserveHourOfDayAcrossDaylightSavings());
  props.setBoolean2(calTrig.isSkipDayIfHourDoesNotExist());
  
  return props;
}
origin: org.motechproject/quartz-couchdb-store-bundle

@JsonProperty("timezone")
public String getTimezoneId() {
  return getBaseTrigger().getTimeZone() != null ? getBaseTrigger().getTimeZone().getID() : null;
}
org.quartz.impl.triggersCalendarIntervalTriggerImplgetTimeZone

Popular methods of CalendarIntervalTriggerImpl

  • <init>
    Create a DateIntervalTrigger that will occur immediately, and repeat at the the given interval.
  • getRepeatInterval
  • getRepeatIntervalUnit
  • getTimesTriggered
  • setRepeatInterval
  • setRepeatIntervalUnit
  • setTimeZone
  • daylightSavingHourShiftOccurredAndAdvanceNeeded
  • getEndTime
    Get the time at which the DateIntervalTrigger should quit repeating.
  • getFireTimeAfter
  • getMisfireInstruction
  • getNextFireTime
    Returns the next time at which the Trigger is scheduled to fire. If the trigger will not fire again
  • getMisfireInstruction,
  • getNextFireTime,
  • getStartTime,
  • hasAdditionalProperties,
  • isPreserveHourOfDayAcrossDaylightSavings,
  • isSkipDayIfHourDoesNotExist,
  • setEndTime,
  • setMisfireInstruction,
  • setNextFireTime

Popular in Java

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • setRequestProperty (URLConnection)
    Sets the general request property. If a property with the key already exists, overwrite its value wi
  • getSupportFragmentManager (FragmentActivity)
    Return the FragmentManager for interacting with fragments associated with this activity.
  • BufferedInputStream (java.io)
    Wraps an existing InputStream and buffers the input. Expensive interaction with the underlying input
  • FileInputStream (java.io)
    A FileInputStream obtains input bytes from a file in a file system. What files are available depends
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Vector (java.util)
    The Vector class implements a growable array of objects. Like an array, it contains components that
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
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