| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JobBuilder | |
|---|---|
| org.quartz | The main package of Quartz, containing the client-side interfaces. | 
| org.quartz.impl | Contains implementations of the SchedulerFactory, JobStore, ThreadPool, and other interfaces required by the org.quartz.core.QuartzScheduler. | 
| Uses of JobBuilder in org.quartz | 
|---|
| Methods in org.quartz that return JobBuilder | |
|---|---|
|  JobBuilder | JobDetail.getJobBuilder()Get a JobBuilderthat is configured to produce aJobDetailidentical to this one. | 
| static JobBuilder | JobBuilder.newJob()Create a JobBuilder with which to define a JobDetail. | 
| static JobBuilder | JobBuilder.newJob(Class<? extends Job> jobClass)Create a JobBuilder with which to define a JobDetail,
 and set the class name of theJobto be executed. | 
|  JobBuilder | JobBuilder.ofType(Class<? extends Job> jobClazz)Set the class which will be instantiated and executed when a Trigger fires that is associated with this JobDetail. | 
|  JobBuilder | JobBuilder.requestRecovery()Instructs the Schedulerwhether or not theJobshould be re-executed if a 'recovery' or 'fail-over' situation is
 encountered. | 
|  JobBuilder | JobBuilder.requestRecovery(boolean jobShouldRecover)Instructs the Schedulerwhether or not theJobshould be re-executed if a 'recovery' or 'fail-over' situation is
 encountered. | 
|  JobBuilder | JobBuilder.setJobData(JobDataMap newJobDataMap)Replace the JobDetail'sJobDataMapwith the
 givenJobDataMap. | 
|  JobBuilder | JobBuilder.storeDurably()Whether or not the Jobshould remain stored after it is
 orphaned (nopoint to it). | 
|  JobBuilder | JobBuilder.storeDurably(boolean jobDurability)Whether or not the Jobshould remain stored after it is
 orphaned (nopoint to it). | 
|  JobBuilder | JobBuilder.usingJobData(JobDataMap newJobDataMap)Add all the data from the given JobDataMapto theJobDetail'sJobDataMap. | 
|  JobBuilder | JobBuilder.usingJobData(String dataKey,
             Boolean value)Add the given key-value pair to the JobDetail's JobDataMap. | 
|  JobBuilder | JobBuilder.usingJobData(String dataKey,
             Double value)Add the given key-value pair to the JobDetail's JobDataMap. | 
|  JobBuilder | JobBuilder.usingJobData(String dataKey,
             Float value)Add the given key-value pair to the JobDetail's JobDataMap. | 
|  JobBuilder | JobBuilder.usingJobData(String dataKey,
             Integer value)Add the given key-value pair to the JobDetail's JobDataMap. | 
|  JobBuilder | JobBuilder.usingJobData(String dataKey,
             Long value)Add the given key-value pair to the JobDetail's JobDataMap. | 
|  JobBuilder | JobBuilder.usingJobData(String dataKey,
             String value)Add the given key-value pair to the JobDetail's JobDataMap. | 
|  JobBuilder | JobBuilder.withDescription(String jobDescription)Set the given (human-meaningful) description of the Job. | 
|  JobBuilder | JobBuilder.withIdentity(JobKey jobKey)Use a JobKeyto identify the JobDetail. | 
|  JobBuilder | JobBuilder.withIdentity(String name)Use a JobKeywith the given name and default group to
 identify the JobDetail. | 
|  JobBuilder | JobBuilder.withIdentity(String name,
             String group)Use a JobKeywith the given name and group to
 identify the JobDetail. | 
| Uses of JobBuilder in org.quartz.impl | 
|---|
| Methods in org.quartz.impl that return JobBuilder | |
|---|---|
|  JobBuilder | JobDetailImpl.getJobBuilder() | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||