diff -r b5148f646278 -r d154d6012cbe java/sql-dk/src/info/globalcode/sql/dk/formatting/CommonProperties.java --- a/java/sql-dk/src/info/globalcode/sql/dk/formatting/CommonProperties.java Sat Aug 15 11:07:50 2015 +0200 +++ b/java/sql-dk/src/info/globalcode/sql/dk/formatting/CommonProperties.java Sat Aug 15 11:52:38 2015 +0200 @@ -17,12 +17,34 @@ */ package info.globalcode.sql.dk.formatting; +import java.util.Collections; +import java.util.HashMap; +import java.util.Map; + /** * * @author Ing. František Kučera (frantovo.cz) */ public class CommonProperties { + private static final Map TYPE_SIMPLE_NAMES; + + static { + Map m = new HashMap<>(); + m.put(Boolean.class, "boolean"); + m.put(String.class, "String"); + m.put(Character.class, "char"); + m.put(Integer.class, "int"); + m.put(Long.class, "long"); + m.put(Double.class, "double"); + TYPE_SIMPLE_NAMES = Collections.unmodifiableMap(m); + } + + public static String getSimpleTypeName(Class type) { + String name = TYPE_SIMPLE_NAMES.get(type); + return name == null ? type.getName() : name; + } + public static final String COLORFUL = "color"; - public static final String COLORFUL_DESCRIPTION = "whether the output should be printed in color (escape sequences)"; + public static final String COLORFUL_DESCRIPTION = "whether the output should be printed in color (ANSI Escape Sequences)"; }