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

Class Number

vm/JavaAPI/src/java/lang/Number.java:29–45  ·  view source on GitHub ↗

@author shannah

Source from the content-addressed store, hash-verified

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

Callers 15

xFunction · 0.50
numberReplaceMethod · 0.50
$textualSuggestMethod · 0.50
$computeWordRangesMethod · 0.50
browser_bridge.jsFile · 0.50
wrapJsResultFunction · 0.50
toHostTransferArgFunction · 0.50
_LfromNumberFunction · 0.50
_LcFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected