YangXPathParser number compliance knobs. This enumeration defines what assumptions the parser can make --
affecting its optimization properties around
constant folding when number expressions are
involved.
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
All number expressions are treated as double. This in spirit of XPath 1.0 -- any number expression
starts its life as a double, making all operations subject to IEEE754 rounding and range rules.
All number expressions are treated as infinite-precision numbers. This follows the spirit of YANG 1.1 --
where mostly have integral types and decimal64 mapped to BigDecimal. Non-decimal numbers are mapped either to
int, long or BigInteger.
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (Extraneous whitespace characters are
not permitted.)
Parameters:
name - the name of the enum constant to be returned.