Interface NeedsAware

  • All Implemented Interfaces:

    
    public interface NeedsAware
    
                        
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Unit needs(Job job) Adds a dependency to the job.
      abstract Unit needs(List<Job> jobs) Adds a list of jobs as dependencies to the job.
      abstract Unit needs(String job) Adds a dependency to the job via its name.
      abstract Unit needsAsString(List<String> jobs) Adds a list of jobs as dependencies to the job via their names.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • needs

         abstract Unit needs(Job job)

        Adds a dependency to the job.

      • needs

         abstract Unit needs(List<Job> jobs)

        Adds a list of jobs as dependencies to the job.

      • needs

         abstract Unit needs(String job)

        Adds a dependency to the job via its name.