View Javadoc

1   package org.sourceforge.jemm.database.components;
2   
3   /**
4    * Enum representing whether the garbage collector is in automatic (daemon thread) or 
5    * manual trigger mode.
6    * 
7    * @author Rory Graves
8    */
9   public enum GCMode {
10      /** The garbage collector automatically runs in a background thread */
11      AUTO,
12      /** The garbage collector will only run when triggered manually. */
13      MANUAL;
14  }