| Package | Description | 
|---|---|
| org.hibernate.jpa.criteria.expression | 
| Modifier and Type | Method and Description | 
|---|---|
BinaryArithmeticOperation.Operation | 
BinaryArithmeticOperation.getOperator()  | 
static BinaryArithmeticOperation.Operation | 
BinaryArithmeticOperation.Operation.valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static BinaryArithmeticOperation.Operation[] | 
BinaryArithmeticOperation.Operation.values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
| Constructor and Description | 
|---|
BinaryArithmeticOperation(CriteriaBuilderImpl criteriaBuilder,
                         Class<N> resultType,
                         BinaryArithmeticOperation.Operation operator,
                         Expression<? extends N> lhs,
                         Expression<? extends N> rhs)
Creates an arithmethic operation based on 2 expressions. 
 | 
BinaryArithmeticOperation(CriteriaBuilderImpl criteriaBuilder,
                         Class<N> javaType,
                         BinaryArithmeticOperation.Operation operator,
                         Expression<? extends N> lhs,
                         N rhs)
Creates an arithmethic operation based on an expression and a literal. 
 | 
BinaryArithmeticOperation(CriteriaBuilderImpl criteriaBuilder,
                         Class<N> javaType,
                         BinaryArithmeticOperation.Operation operator,
                         N lhs,
                         Expression<? extends N> rhs)
Creates an arithmetic operation based on an expression and a literal. 
 | 
Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.