File: Byte.hx

package info (click to toggle)
haxe 1%3A3.2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 23,464 kB
  • ctags: 9,612
  • sloc: ml: 83,200; ansic: 1,724; makefile: 473; java: 349; cs: 314; python: 250; sh: 43; cpp: 39; xml: 25
file content (51 lines) | stat: -rw-r--r-- 3,431 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package java.lang;

@:native("") // make sure the generator won't see this
@:forward abstract Byte(ByteClass) from ByteClass to ByteClass
{
	@:to @:extern inline public function toByte():java.types.Int8
		return this.byteValue();
	@:from @:extern inline public static function fromByte(b:java.types.Int8):Byte
		return ByteClass.valueOf(b);

	@:extern public static var MAX_VALUE(get,never):java.types.Int8;
	@:extern static inline function get_MAX_VALUE():java.types.Int8 return ByteClass.MAX_VALUE;
	@:extern public static var MIN_VALUE(get,never):java.types.Int8;
	@:extern static inline function get_MIN_VALUE():java.types.Int8 return ByteClass.MIN_VALUE;
	@:extern public static var SIZE(get,never):Int;
	@:extern static inline function get_SIZE():Int return ByteClass.SIZE;
	@:extern public static var TYPE(get,set):Class<java.lang.Byte>;
	@:extern static inline function get_TYPE():Class<java.lang.Byte> return ByteClass.TYPE;
	@:extern static inline function set_TYPE(val:Class<java.lang.Byte>):Class<java.lang.Byte> return ByteClass.TYPE = val;
	@:extern @:overload inline public static function compare(param1:java.types.Int8, param2:java.types.Int8):Int return ByteClass.compare(param1, param2);
	@:extern @:overload inline public static function decode(param1:String):Byte return ByteClass.decode(param1);
	@:extern @:overload inline public static function parseByte(param1:String, param2:Int):java.types.Int8 return ByteClass.parseByte(param1, param2);
	@:extern @:overload inline public static function _toString(param1:java.types.Int8):String return ByteClass._toString(param1);
	@:extern @:overload inline public static function valueOf(param1:java.types.Int8):Byte return ByteClass.valueOf(param1);
}

@:native("java.lang.Byte") extern class ByteClass extends Number implements Comparable<Byte>
{
	@:overload function new(param1 : java.types.Int8) : Void;
	@:overload @:throws("java.lang.NumberFormatException") function new(param1 : String) : Void;
	@:overload function compareTo(param1 : Byte) : Int;
	@:overload function compareTo(param1 : Dynamic) : Int;
	@:overload function equals(param1 : Dynamic) : Bool;
	@:overload function hashCode() : Int;
	@:overload function toString() : String;
	@:final static var MAX_VALUE(default,null) : java.types.Int8;
	@:final static var MIN_VALUE(default,null) : java.types.Int8;
	@:final static var SIZE(default,null) : Int;
	@:final static var TYPE : Class<Byte>;
	@:overload static function compare(param1 : java.types.Int8, param2 : java.types.Int8) : Int;
	@:overload @:throws("java.lang.NumberFormatException") static function decode(param1 : String) : Byte;
	@:overload @:throws("java.lang.NumberFormatException") static function parseByte(param1 : String, param2 : Int) : java.types.Int8;
	@:overload @:throws("java.lang.NumberFormatException") static function parseByte(param1 : String) : java.types.Int8;
	@:native("toString") @:overload static function _toString(param1 : java.types.Int8) : String;
	@:overload static function valueOf(param1 : java.types.Int8) : Byte;
	@:overload @:throws("java.lang.NumberFormatException") static function valueOf(param1 : String) : Byte;
	@:overload @:throws("java.lang.NumberFormatException") static function valueOf(param1 : String, param2 : Int) : Byte;
}

@:realPath("java.lang.Byte_ByteCache") @:javaNative @:native("java.lang.Byte$ByteCache") @:javaCanonical("java.lang","Byte.ByteCache") extern class Byte_ByteCache {
}