1 package ffx.algorithms.dynamics;
2
3 /**
4 * Define the verbosity of the MolecularDynamics class.
5 */
6 public enum MDVerbosity {
7 VERBOSE(false), QUIET(true), SILENT(true);
8
9 private final boolean isQuiet;
10
11 MDVerbosity(boolean isQuiet) {
12 this.isQuiet = isQuiet;
13 }
14
15 public boolean isQuiet() {
16 return isQuiet;
17 }
18 }