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

org.hibernate.sql.MckoiCaseFragment Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
//$Id: MckoiCaseFragment.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate.sql;

import java.util.Iterator;
import java.util.Map;

/**
 * A Mckoi IF function.
 * 
* if(..., ..., ...) as ... *
* @author Gavin King */ public class MckoiCaseFragment extends CaseFragment { public String toFragmentString() { StringBuffer buf = new StringBuffer( cases.size() * 15 + 10 ); StringBuffer buf2= new StringBuffer( cases.size() ); Iterator iter = cases.entrySet().iterator(); while ( iter.hasNext() ) { Map.Entry me = (Map.Entry) iter.next(); buf.append(" if(") .append( me.getKey() ) .append(" is not null") .append(", ") .append( me.getValue() ) .append(", "); buf2.append(")"); } buf.append("null"); buf.append(buf2); if (returnColumnName!=null) { buf.append(" as ") .append(returnColumnName); } return buf.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy