Think I found the answer. You must use the Projection.sqlProjection() and not Projections.sum(). Example:
.setProjection(Projections.sqlProjection("sum(cast(amount as signed)* direction) as amntDir", new String[] {"amntDir"} , new Type[] {Hibernate.DOUBLE}));