java/sql-dk/src/info/globalcode/sql/dk/formatting/CommonProperties.java
branchv_0
changeset 212 d154d6012cbe
parent 206 e2f24eea8543
equal deleted inserted replaced
211:b5148f646278 212:d154d6012cbe
    15  * You should have received a copy of the GNU General Public License
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    17  */
    18 package info.globalcode.sql.dk.formatting;
    18 package info.globalcode.sql.dk.formatting;
    19 
    19 
       
    20 import java.util.Collections;
       
    21 import java.util.HashMap;
       
    22 import java.util.Map;
       
    23 
    20 /**
    24 /**
    21  *
    25  *
    22  * @author Ing. František Kučera (frantovo.cz)
    26  * @author Ing. František Kučera (frantovo.cz)
    23  */
    27  */
    24 public class CommonProperties {
    28 public class CommonProperties {
    25 
    29 
       
    30 	private static final Map<Class, String> TYPE_SIMPLE_NAMES;
       
    31 
       
    32 	static {
       
    33 		Map<Class, String> m = new HashMap<>();
       
    34 		m.put(Boolean.class, "boolean");
       
    35 		m.put(String.class, "String");
       
    36 		m.put(Character.class, "char");
       
    37 		m.put(Integer.class, "int");
       
    38 		m.put(Long.class, "long");
       
    39 		m.put(Double.class, "double");
       
    40 		TYPE_SIMPLE_NAMES = Collections.unmodifiableMap(m);
       
    41 	}
       
    42 
       
    43 	public static String getSimpleTypeName(Class type) {
       
    44 		String name = TYPE_SIMPLE_NAMES.get(type);
       
    45 		return name == null ? type.getName() : name;
       
    46 	}
       
    47 
    26 	public static final String COLORFUL = "color";
    48 	public static final String COLORFUL = "color";
    27 	public static final String COLORFUL_DESCRIPTION = "whether the output should be printed in color (escape sequences)";
    49 	public static final String COLORFUL_DESCRIPTION = "whether the output should be printed in color (ANSI Escape Sequences)";
    28 }
    50 }