Uses of Class
org.unitConverter.math.ExpressionParser.PriorityUnaryOperator
-
Packages that use ExpressionParser.PriorityUnaryOperator Package Description org.unitConverter.math Supplementary classes that are not related to units, but are necessary for their function. -
-
Uses of ExpressionParser.PriorityUnaryOperator in org.unitConverter.math
Fields in org.unitConverter.math with type parameters of type ExpressionParser.PriorityUnaryOperator Modifier and Type Field Description private java.util.Map<java.lang.String,ExpressionParser.PriorityUnaryOperator<T>>ExpressionParser.Builder. unaryOperatorsA map mapping operator strings to operator functions, for unary operators.private java.util.Map<java.lang.String,ExpressionParser.PriorityUnaryOperator<T>>ExpressionParser. unaryOperatorsA map mapping operator strings to operator functions, for unary operators.Methods in org.unitConverter.math with parameters of type ExpressionParser.PriorityUnaryOperator Modifier and Type Method Description intExpressionParser.PriorityUnaryOperator. compareTo(ExpressionParser.PriorityUnaryOperator<T> o)Compares this object to another by priority.Constructor parameters in org.unitConverter.math with type arguments of type ExpressionParser.PriorityUnaryOperator Constructor Description ExpressionParser(java.util.function.Function<java.lang.String,? extends T> objectObtainer, java.util.Map<java.lang.String,ExpressionParser.PriorityUnaryOperator<T>> unaryOperators, java.util.Map<java.lang.String,ExpressionParser.PriorityBinaryOperator<T>> binaryOperators, java.lang.String spaceOperator)Creates theExpressionParser.
-