Uses of Class
org.apache.commons.jexl3.JexlException.VariableIssue
-
Packages that use JexlException.VariableIssue Package Description org.apache.commons.jexl3 Provides a framework for evaluating JEXL expressions.org.apache.commons.jexl3.internal Provides utilities for introspection services. -
-
Uses of JexlException.VariableIssue in org.apache.commons.jexl3
Fields in org.apache.commons.jexl3 declared as JexlException.VariableIssue Modifier and Type Field Description private JexlException.VariableIssue
JexlException.Variable. issue
Undefined variable flag.Methods in org.apache.commons.jexl3 that return JexlException.VariableIssue Modifier and Type Method Description static JexlException.VariableIssue
JexlException.VariableIssue. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JexlException.VariableIssue[]
JexlException.VariableIssue. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.commons.jexl3 with parameters of type JexlException.VariableIssue Modifier and Type Method Description static java.lang.String
JexlException. variableError(JexlNode node, java.lang.String variable, JexlException.VariableIssue issue)
Generates a message for a variable error.Constructors in org.apache.commons.jexl3 with parameters of type JexlException.VariableIssue Constructor Description Variable(JexlNode node, java.lang.String var, JexlException.VariableIssue vi)
Creates a new Variable exception instance. -
Uses of JexlException.VariableIssue in org.apache.commons.jexl3.internal
Methods in org.apache.commons.jexl3.internal with parameters of type JexlException.VariableIssue Modifier and Type Method Description protected java.lang.Object
InterpreterBase. variableError(JexlNode node, java.lang.String var, JexlException.VariableIssue issue)
Triggered when a variable generates an issue.
-