/usr/share/doc/libognl-java/LanguageGuide/coerceInteger.html is in libognl-java-doc 2.7.3-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 | <html><head><META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Interpreting Objects as Integers</title><link href="../docbook.css" type="text/css" rel="stylesheet"><meta content="DocBook XSL Stylesheets V1.78.1" name="generator"><link rel="home" href="index.html" title="OGNL Language Guide"><link rel="up" href="coercion.html" title="Chapter 5. Coercing Objects to Types"><link rel="prev" href="coerceNumber.html" title="Interpreting Objects as Numbers"><link rel="next" href="coerceCollection.html" title="Interpreting Objects as Collections"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table summary="Navigation header" width="100%"><tr><th align="center" colspan="3">Interpreting Objects as Integers</th></tr><tr><td align="left" width="20%"><a accesskey="p" href="coerceNumber.html"><img src="../images/navigation/prev.gif" alt="Prev"></a> </td><th align="center" width="60%">Chapter 5. Coercing Objects to Types</th><td align="right" width="20%"> <a accesskey="n" href="coerceCollection.html"><img src="../images/navigation/next.gif" alt="Next"></a></td></tr></table><hr></div><div class="section"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="coerceInteger"></a>Interpreting Objects as Integers</h2></div></div></div><p>Operators that work only on integers, like the bit-shifting operators, treat their arguments as numbers, except that <code class="classname">BigDecimal</code>s and <code class="classname">BigInteger</code>s are operated on as
<code class="classname">BigInteger</code>s and all other kinds of numbers are operated on as Longs. For the <code class="classname">BigInteger</code> case, the result of these operators remains a <code class="classname">BigInteger</code>; for the
<code class="classname">Long</code> case, the result is expressed as the same type of the arguments, if it fits, or as a <code class="classname">Long</code> otherwise.</p></div><div class="navfooter"><hr><table summary="Navigation footer" width="100%"><tr><td align="left" width="40%"><a accesskey="p" href="coerceNumber.html"><img src="../images/navigation/prev.gif" alt="Prev"></a> </td><td align="center" width="20%"><a accesskey="u" href="coercion.html"><img src="../images/navigation/up.gif" alt="Up"></a></td><td align="right" width="40%"> <a accesskey="n" href="coerceCollection.html"><img src="../images/navigation/next.gif" alt="Next"></a></td></tr><tr><td valign="top" align="left" width="40%">Interpreting Objects as Numbers </td><td align="center" width="20%"><a accesskey="h" href="index.html"><img src="../images/navigation/home.gif" alt="Home"></a></td><td valign="top" align="right" width="40%"> Interpreting Objects as Collections</td></tr></table></div></body></html>
|