List of usage examples for java.lang Number subclass-usage
From source file MixedRadixNumber.java
/** * @author Ciaran O'Reilly see: * http://demonstrations.wolfram.com/MixedRadixNumberRepresentations/ * for useful example. */ public class MixedRadixNumber extends Number {
From source file MutableInteger.java
/** Implements an integer object wrapper which allows changing the integer value.
*
* <p>
* The built-in Java Integer class does not allow changing the value
* of the wrapped integer value once the Integer object is created.
* MutableInteger provides most of the same methods as Integer but adds
From source file MutableLong.java
/** Implements a long object wrapper which allows changing the long value.
*
* <p>
* The built-in Java Long class does not allow changing the value
* of the wrapped Long value once the Long object is created.
* MutableLong provides most of the same methods as Long but adds
From source file UInt16.java
/** * Class to represent 16-bit unsigned integers. */ @SuppressWarnings("serial") public class UInt16 extends Number implements Comparable<UInt16> { /** Maximum possible value. */
From source file MutableInteger.java
/**
* This class is the same as Integer but the stored value can be changed.
*
* @author Thorsten Meinl (Thorsten.Meinl@informatik.uni-erlangen.de)
*
*/
From source file UInt64.java
/** * Class to represent unsigned 64-bit numbers. Warning: Any functions which take * or return a <tt>long</tt> are restricted to the range of a signed 64bit * number. Use the BigInteger methods if you wish access to the full range. */ @SuppressWarnings("serial")
From source file Counter.java
/**
* A reassignable integer usable for counting. Counters do not
* override <code>Obect's</code> methods <code>hashCode()</code> or
* <code>equals()</code>, so two counters with the same value are not
* necessarily equal.
*
From source file AtomicFloat.java
/**
*
* <DIV lang="en"></DIV>
* <DIV lang="ja"></DIV>
*
* @author Makoto YUI (yuin405+xbird@gmail.com)
From source file at.alladin.rmbt.db.fields.Field.java
public abstract class Field extends Number { private static final long serialVersionUID = 1L; protected final String dbKey; protected final String jsonKey; protected final boolean readOnly;
From source file MutableInt.java
/**
*
* <DIV lang="en"></DIV>
* <DIV lang="ja"></DIV>
*
* @author Makoto YUI (yuin405+xbird@gmail.com)