MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / Number

Class Number

Ports/CLDC11/src/java/lang/Number.java:26–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24
25/// @author shannah
26public abstract class Number {
27 public abstract int intValue();
28
29 public byte byteValue() {
30 return (byte)intValue();
31 }
32
33
34 public abstract long longValue();
35
36 public abstract float floatValue();
37
38 public abstract double doubleValue();
39
40 public short shortValue() {
41 return (short) intValue();
42 }
43}

Callers 8

isIOSUserAgentFunction · 0.50
isIPadUserAgentFunction · 0.50
port.jsFile · 0.50
samplerate.min.jsFile · 0.50
video.min.jsFile · 0.50
ocFunction · 0.50
TcFunction · 0.50
interpolateArrayFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected