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

com.jpattern.orm.query.NullNameSolver Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.query;

import com.jpattern.orm.exception.OrmException;

/**
 * 
 * @author Francesco Cina
 *
 * 19/giu/2011
 */
public class NullNameSolver implements NameSolver {

	/**
	 * 
	 */


	@Override
	public String solvePropertyName(final String property) {
		return property;
	}

	@Override
	public 

Integer register(final Class

clazz) { return 0; } @Override public

Integer register(final Class

clazz, final String alias) { return 0; } @Override public String alias(final Integer classId) throws OrmException { return ""; } @Override public String solvePropertyName(final String property, final String defaultValue) throws OrmException { return defaultValue; } @Override public String solvePropertyNameWithoutAlias(final String property) throws OrmException { return ""; } @Override public void alwaysResolveWithoutAlias(final boolean resolveWithoutAlias) { } @Override public boolean getAlwaysResolveWithoutAlias() { return false; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy