/* * Copyright (c) 2009 Mysema Ltd. * All rights reserved. * */ package com.mysema.query.sql; import java.sql.SQLException; import java.util.List; import com.mysema.query.types.OrderSpecifier; /** * Union defines an interface for Union queries * * @author tiwe * * @param */ public interface Union { /** * @param o * @return */ Union orderBy(OrderSpecifier... o); /** * @return * @throws SQLException */ List list() throws SQLException; }