| http://www.w3.org/ns/prov#value | - .get(0).getBilledTo());here is a more complex example of the same approach:queryBuilder = new QueryBuilder();customer = queryBuilder.createQueryDefinition(Customer.class);queryBuilder.caseExp(customer.getAnnualSpending()) // Please note: The compiler stops us from saying e.g. gt(ten thousand) .when().gt(10000.0).then(Premier) .when().gt(5000.0).then(Gold) .when().gt(200.0).then(Silver) .oth
|