View Javadoc
1   package org.cyclopsgroup.jmxterm.io;
2   
3   
4   /**
5    * Level of verbose option
6    * 
7    * @author <a href="mailto:jiaqi.guo@gmail.com">Jiaqi Guo</a>
8    */
9   public enum VerboseLevel {
10    /**
11     * Nothing is written out except returned values
12     */
13    SILENT,
14    /**
15     * Print out returned value of messages
16     */
17    BRIEF,
18    /**
19     * Print out returned value of detail of messages
20     */
21    VERBOSE;
22  }