Uses of Class
java.lang.Number

Packages that use Number
de.cau.cs.kieler.sj A package for synchronous programming in java. 
java.lang Core Java classes 
org.apache.bcel.generic This package contains the "generic" part of the Byte Code Engineering Library, i.e., classes to dynamically modify class objects and byte code instructions. 
org.json This package contains the JSON implementation for java as it can be found on http://www.json.org/java 
 

Uses of Number in de.cau.cs.kieler.sj
 

Methods in de.cau.cs.kieler.sj that return Number
 Number CombinationFunction.call(Number oldVal, Number newVal)
          A method with two parameters which should be combined in any way.
 Number ValuedSignal.getValue()
          Returns the value of the valued signal.
 

Methods in de.cau.cs.kieler.sj with parameters of type Number
 Number CombinationFunction.call(Number oldVal, Number newVal)
          A method with two parameters which should be combined in any way.
 void ValuedSignal.emit(Number val)
          Emits a signal with a given value.
 void ValuedSignal.setStartValue(Number startVal)
          Sets the default value for the signal at the beginning of every new tick.
 void ValuedSignal.sustainCB(Number val)
          Sustain a signal using the given value.
 

Uses of Number in java.lang
 

Subclasses of Number in java.lang
 class Byte
          Wrapper class for bytes.
 class Double
          Minimal Double implementation.
 class Float
          Minimal Float implementation.
 class Integer
          Minimal Integer implementation that supports converting an int to a String.
 class Long
          Wrapper class for long integers.
 class Short
          Wrapper class for shorts.
 

Uses of Number in org.apache.bcel.generic
 

Methods in org.apache.bcel.generic that return Number
 Number BIPUSH.getValue()
           
 Number ConstantPushInstruction.getValue()
           
 Number DCONST.getValue()
           
 Number FCONST.getValue()
           
 Number ICONST.getValue()
           
 Number LCONST.getValue()
           
 Number SIPUSH.getValue()
           
 Number LDC2_W.getValue(ConstantPoolGen cpg)
           
 

Constructors in org.apache.bcel.generic with parameters of type Number
PUSH(ConstantPoolGen cp, Number value)
           
 

Uses of Number in org.json
 

Methods in org.json with parameters of type Number
static String JSONObject.numberToString(Number n)
          Produce a string from a Number.