Uses of Class
org.fryske_akademy.jpa.OPERATOR
-
Packages that use OPERATOR Package Description org.fryske_akademy.jpa Interfaces classes to support working with entities, most notably an entity interface, a Param class with support for syntax in values and value conversion and a JpqlBuilder that facilitates building (dynamic) queries. -
-
Uses of OPERATOR in org.fryske_akademy.jpa
Methods in org.fryske_akademy.jpa that return OPERATOR Modifier and Type Method Description static OPERATOROPERATOR. fromToken(String token)static OPERATOROPERATOR. fromUserInput(String input)OPERATORParam. getOperator()static OPERATOROPERATOR. operator(String operator, String value, boolean syntaxInValue)Returns an operator from the value when syntaxInValue is true and the value contains one of the supported operators, otherwise the operator is determined from the operator argumentstatic OPERATOROPERATOR. valueOf(String name)Returns the enum constant of this type with the specified name.static OPERATOR[]OPERATOR. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.fryske_akademy.jpa with parameters of type OPERATOR Modifier and Type Method Description Param.BuilderParam.Builder. add(String propertyPath, String paramKey, OPERATOR operator, Object paramValue, boolean not, boolean or)CallsParam.Builder.add(String, String, OPERATOR, Object, boolean, boolean, Object)with null for maxValueParam.BuilderParam.Builder. add(String propertyPath, String paramKey, OPERATOR operator, Object paramValue, boolean not, boolean or, Object maxValue)Bottleneck method, adds a new Param, does not apply any intelligence.static List<Param>Param. one(String key, OPERATOR operator, Object value)CallsParam.Builder.add(String, String, OPERATOR, Object, boolean, boolean, Object)with key,key,operator,value,false,false,null
-