001package com.avaje.ebean; 002 003import java.io.Serializable; 004 005/** 006 * An expression that is part of a WHERE or HAVING clause. 007 */ 008public interface Expression extends Serializable { 009 010}