forked from jruby/jruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava.lang.rb
More file actions
83 lines (70 loc) · 1.22 KB
/
java.lang.rb
File metadata and controls
83 lines (70 loc) · 1.22 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
module java::lang::Runnable
def to_proc
proc { self.run }
end
end
module java::lang::Iterable
include Enumerable
def each
iter = iterator
yield(iter.next) while iter.hasNext
end
def each_with_index
index = 0
iter = iterator
while iter.hasNext
yield(iter.next, index)
index += 1
end
end
end
module java::lang::Comparable
include Comparable
def <=>(a)
return nil if a.nil?
compareTo(a)
end
end
class java::lang::Throwable
def backtrace
stack_trace.map(&:to_s)
end
def set_backtrace(trace)
# ignored; Java exceptions can't be set to Ruby trace
trace
end
def message
msg = getLocalizedMessage
msg ? msg : ""
end
def to_s
message
end
def to_str
to_s
end
def inspect
to_string
end
class << self
alias :old_eqq :===
def ===(rhs)
if (NativeException == rhs.class) && (java_class.assignable_from?(rhs.cause.java_class))
true
else
old_eqq(rhs)
end
end
end
end
Java::byte[].class_eval do
def ubyte_get(index)
byte = self[index]
byte += 256 if byte < 0
byte
end
def ubyte_set(index, value)
value -= 256 if value > 127
self[index] = value
end
end