All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.akquinet.jbosscc.guttenbase.hints.CaseConversionMode Maven / Gradle / Ivy

The newest version!
package de.akquinet.jbosscc.guttenbase.hints;

/**
 * Used to map table names, column names, etc.
 * 

* © 2012-2034 akquinet tech@spree *

* * @author M. Dahm */ public enum CaseConversionMode { NONE, UPPER, LOWER; public String convert(final String name) { assert name != null : "name != null"; switch (this) { case LOWER: return name.toLowerCase(); case UPPER: return name.toUpperCase(); case NONE: default: return name; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy