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

com.googlecode.mjorm.query.modifiers.Modifier Maven / Gradle / Ivy

The newest version!
package com.googlecode.mjorm.query.modifiers;

import com.mongodb.DBObject;

/**
 * Represents a single query modifier.
 * 
 */
public interface Modifier {

	/**
	 * Returns the query representation of the {@code Modifier}.
	 * Most of the time this will be a {@link DBObject}, but
	 * it can be anything accepted by the MongoDB java driver.
	 * 
	 * @return the {@link Object}
	 */
	DBObject toModifierObject(String propertyName);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy