Uses of Class
net.aavalla.utils.jobpool.JobCategory

Packages that use JobCategory
net.aavalla.utils.jobpool   
 

Uses of JobCategory in net.aavalla.utils.jobpool
 

Methods in net.aavalla.utils.jobpool that return JobCategory
static JobCategory JobCategory.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JobCategory[] JobCategory.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.aavalla.utils.jobpool that return types with arguments of type JobCategory
 java.util.EnumSet<JobCategory> Job.getCategories()
          Returns the categories this job is a part of.
 java.util.EnumSet<JobCategory> Job.getConflictingCategories()
          Returns the categories this job conflicts with.
 

Methods in net.aavalla.utils.jobpool with parameters of type JobCategory
protected  boolean Job.addCategory(JobCategory cat)
           
protected  boolean Job.addConflictingCategory(JobCategory cat)
           
 java.lang.Integer JobPool.getMaxConcurrencyForCategory(JobCategory cat)
           
 java.lang.Integer JobPool.setMaxConcurrencyForCategory(JobCategory cat, java.lang.Integer max)
           
 

Method parameters in net.aavalla.utils.jobpool with type arguments of type JobCategory
protected  void Job.setCategories(java.util.Set<JobCategory> catset)
           
protected  void Job.setConflictingCategories(java.util.Set<JobCategory> catset)