Package org.apache.commons.jexl3
Interface JexlInfo.Detail
-
- All Known Implementing Classes:
Debugger,TemplateDebugger
- Enclosing class:
- JexlInfo
public static interface JexlInfo.DetailDescribes errors more precisely.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intend()Gets the end column on the line that triggered the errorintstart()Gets the start column on the line that triggered the errorjava.lang.StringtoString()Gets the code that triggered the error
-
-
-
Method Detail
-
end
int end()
Gets the end column on the line that triggered the error- Returns:
- the end column on the line that triggered the error
-
start
int start()
Gets the start column on the line that triggered the error- Returns:
- the start column on the line that triggered the error
-
toString
java.lang.String toString()
Gets the code that triggered the error- Overrides:
toStringin classjava.lang.Object- Returns:
- the actual part of code that triggered the error
-
-