congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
DriverDelegate.calendarExists
Code IndexAdd Tabnine to your IDE (free)

How to use
calendarExists
method
in
org.quartz.impl.jdbcjobstore.DriverDelegate

Best Java code snippets using org.quartz.impl.jdbcjobstore.DriverDelegate.calendarExists (Showing top 4 results out of 315)

origin: quartz-scheduler/quartz

protected boolean calendarExists(Connection conn, String calName)
  throws JobPersistenceException {
  try {
    return getDelegate().calendarExists(conn, calName);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't determine calendar existence (" + calName + "): "
            + e.getMessage(), e);
  }
}
origin: quartz-scheduler/quartz

protected boolean calendarExists(Connection conn, String calName)
  throws JobPersistenceException {
  try {
    return getDelegate().calendarExists(conn, calName);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't determine calendar existence (" + calName + "): "
            + e.getMessage(), e);
  }
}
origin: com.opensymphony.quartz/com.springsource.org.quartz

protected boolean calendarExists(Connection conn, String calName)
  throws JobPersistenceException {
  try {
    return getDelegate().calendarExists(conn, calName);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't determine calendar existence (" + calName + "): "
            + e.getMessage(), e);
  }
}
origin: quartz/quartz-all

protected boolean calendarExists(Connection conn, String calName)
  throws JobPersistenceException {
  try {
    return getDelegate().calendarExists(conn, calName);
  } catch (SQLException e) {
    throw new JobPersistenceException(
        "Couldn't determine calendar existence (" + calName + "): "
            + e.getMessage(), e);
  }
}
org.quartz.impl.jdbcjobstoreDriverDelegatecalendarExists

Javadoc

Check whether or not a calendar exists.

Popular methods of DriverDelegate

  • calendarIsReferenced
    Check whether or not a calendar is referenced by any triggers.
  • deleteCalendar
    Delete a calendar.
  • deleteFiredTrigger
    Delete a fired trigger.
  • deleteFiredTriggers
    Delete all fired triggers of the given instance.
  • deleteJobDetail
    Delete the job detail record for the given job.
  • deletePausedTriggerGroup
  • deleteSchedulerState
    Delete a scheduler-instance state record.
  • deleteTrigger
    Delete the base trigger data for a trigger.
  • insertCalendar
    Insert a new calendar.
  • insertFiredTrigger
    Insert a fired trigger.
  • insertJobDetail
    Insert the job detail record.
  • insertPausedTriggerGroup
  • insertJobDetail,
  • insertPausedTriggerGroup,
  • insertSchedulerState,
  • insertTrigger,
  • isTriggerGroupPaused,
  • jobExists,
  • selectCalendar,
  • selectCalendars,
  • selectFiredTriggerInstanceNames

Popular in Java

  • Making http post requests using okhttp
  • getSystemService (Context)
  • getExternalFilesDir (Context)
  • setContentView (Activity)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now