forked from bjmashibing/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInteger.html
More file actions
2552 lines (2485 loc) · 115 KB
/
Integer.html
File metadata and controls
2552 lines (2485 loc) · 115 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>Integer (Java SE 12 & JDK 12 )</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="keywords" content="java.lang.Integer class">
<meta name="keywords" content="MIN_VALUE">
<meta name="keywords" content="MAX_VALUE">
<meta name="keywords" content="TYPE">
<meta name="keywords" content="SIZE">
<meta name="keywords" content="BYTES">
<meta name="keywords" content="toString()">
<meta name="keywords" content="toUnsignedString()">
<meta name="keywords" content="toHexString()">
<meta name="keywords" content="toOctalString()">
<meta name="keywords" content="toBinaryString()">
<meta name="keywords" content="parseInt()">
<meta name="keywords" content="parseUnsignedInt()">
<meta name="keywords" content="valueOf()">
<meta name="keywords" content="byteValue()">
<meta name="keywords" content="shortValue()">
<meta name="keywords" content="intValue()">
<meta name="keywords" content="longValue()">
<meta name="keywords" content="floatValue()">
<meta name="keywords" content="doubleValue()">
<meta name="keywords" content="hashCode()">
<meta name="keywords" content="equals()">
<meta name="keywords" content="getInteger()">
<meta name="keywords" content="decode()">
<meta name="keywords" content="compareTo()">
<meta name="keywords" content="compare()">
<meta name="keywords" content="compareUnsigned()">
<meta name="keywords" content="toUnsignedLong()">
<meta name="keywords" content="divideUnsigned()">
<meta name="keywords" content="remainderUnsigned()">
<meta name="keywords" content="highestOneBit()">
<meta name="keywords" content="lowestOneBit()">
<meta name="keywords" content="numberOfLeadingZeros()">
<meta name="keywords" content="numberOfTrailingZeros()">
<meta name="keywords" content="bitCount()">
<meta name="keywords" content="rotateLeft()">
<meta name="keywords" content="rotateRight()">
<meta name="keywords" content="reverse()">
<meta name="keywords" content="signum()">
<meta name="keywords" content="reverseBytes()">
<meta name="keywords" content="sum()">
<meta name="keywords" content="max()">
<meta name="keywords" content="min()">
<meta name="keywords" content="describeConstable()">
<meta name="keywords" content="resolveConstantDesc()">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<link rel="stylesheet" type="text/css" href="../../../jquery/jquery-ui.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
<script type="text/javascript" src="../../../jquery/jszip/dist/jszip.min.js"></script>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script>
<!--[if IE]>
<script type="text/javascript" src="../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script>
<![endif]-->
<script type="text/javascript" src="../../../jquery/jquery-3.3.1.js"></script>
<script type="text/javascript" src="../../../jquery/jquery-migrate-3.0.1.js"></script>
<script type="text/javascript" src="../../../jquery/jquery-ui.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Integer (Java SE 12 & JDK 12 )";
}
}
catch(err) {
}
//-->
var data = {"i0":9,"i1":10,"i2":9,"i3":10,"i4":9,"i5":9,"i6":10,"i7":9,"i8":10,"i9":10,"i10":10,"i11":9,"i12":9,"i13":9,"i14":10,"i15":9,"i16":9,"i17":10,"i18":10,"i19":9,"i20":9,"i21":9,"i22":9,"i23":9,"i24":9,"i25":9,"i26":9,"i27":9,"i28":9,"i29":9,"i30":9,"i31":10,"i32":9,"i33":9,"i34":9,"i35":9,"i36":10,"i37":9,"i38":9,"i39":9,"i40":9,"i41":9,"i42":10,"i43":9,"i44":9,"i45":9,"i46":9,"i47":9,"i48":9,"i49":9,"i50":9};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
var pathtoroot = "../../../";
var useModuleDirectories = true;
loadScripts(document, 'script');</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<header role="banner">
<nav role="navigation">
<div class="fixedNav">
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a id="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a id="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../index.html">Overview</a></li>
<li><a href="../../module-summary.html">Module</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Integer.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><div style="margin-top: 14px;"><strong>Java SE 12 & JDK 12</strong> </div></div>
</div>
<div class="subNav">
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li><a href="#field.summary">Field</a> | </li>
<li><a href="#constructor.summary">Constr</a> | </li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li><a href="#field.detail">Field</a> | </li>
<li><a href="#constructor.detail">Constr</a> | </li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<ul class="navListSearch">
<li><label for="search">SEARCH:</label>
<input type="text" id="search" value="search" disabled="disabled">
<input type="reset" id="reset" value="reset" disabled="disabled">
</li>
</ul>
</div>
<a id="skip.navbar.top">
<!-- -->
</a>
<!-- ========= END OF TOP NAVBAR ========= -->
</div>
<div class="navPadding"> </div>
<script type="text/javascript"><!--
$('.navPadding').css('padding-top', $('.fixedNav').css("height"));
//-->
</script>
</nav>
</header>
<!-- ======== START OF CLASS DATA ======== -->
<main role="main">
<div class="header">
<div class="subTitle"><span class="moduleLabelInType">Module</span> <a href="../../module-summary.html">java.base</a></div>
<div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">java.lang</a></div>
<h2 title="Class Integer" class="title">Class Integer</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="Object.html" title="class in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="Number.html" title="class in java.lang">java.lang.Number</a></li>
<li>
<ul class="inheritance">
<li>java.lang.Integer</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><code><a href="../io/Serializable.html" title="interface in java.io">Serializable</a></code>, <code><a href="Comparable.html" title="interface in java.lang">Comparable</a><<a href="Integer.html" title="class in java.lang">Integer</a>></code>, <code><a href="constant/Constable.html" title="interface in java.lang.constant">Constable</a></code>, <code><a href="constant/ConstantDesc.html" title="interface in java.lang.constant">ConstantDesc</a></code></dd>
</dl>
<hr>
<pre>public final class <span class="typeNameLabel">Integer</span>
extends <a href="Number.html" title="class in java.lang">Number</a>
implements <a href="Comparable.html" title="interface in java.lang">Comparable</a><<a href="Integer.html" title="class in java.lang">Integer</a>>, <a href="constant/Constable.html" title="interface in java.lang.constant">Constable</a>, <a href="constant/ConstantDesc.html" title="interface in java.lang.constant">ConstantDesc</a></pre>
<div class="block">The <code>Integer</code> class wraps a value of the primitive type
<code>int</code> in an object. An object of type <code>Integer</code>
contains a single field whose type is <code>int</code>.
<p>In addition, this class provides several methods for converting
an <code>int</code> to a <code>String</code> and a <code>String</code> to an
<code>int</code>, as well as other constants and methods useful when
dealing with an <code>int</code>.
<p>Implementation note: The implementations of the "bit twiddling"
methods (such as <a href="#highestOneBit(int)"><code>highestOneBit</code></a> and
<a href="#numberOfTrailingZeros(int)"><code>numberOfTrailingZeros</code></a>) are
based on material from Henry S. Warren, Jr.'s <i>Hacker's
Delight</i>, (Addison Wesley, 2002).</div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.0</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../serialized-form.html#java.lang.Integer">Serialized Form</a></dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<div class="memberSummary">
<table>
<caption><span>Fields</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Field</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#BYTES">BYTES</a></span></code></th>
<td class="colLast">
<div class="block">The number of bytes used to represent an <code>int</code> value in two's
complement binary form.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#MAX_VALUE">MAX_VALUE</a></span></code></th>
<td class="colLast">
<div class="block">A constant holding the maximum value an <code>int</code> can
have, 2<sup>31</sup>-1.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#MIN_VALUE">MIN_VALUE</a></span></code></th>
<td class="colLast">
<div class="block">A constant holding the minimum value an <code>int</code> can
have, -2<sup>31</sup>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#SIZE">SIZE</a></span></code></th>
<td class="colLast">
<div class="block">The number of bits used to represent an <code>int</code> value in two's
complement binary form.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="Class.html" title="class in java.lang">Class</a><<a href="Integer.html" title="class in java.lang">Integer</a>></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#TYPE">TYPE</a></span></code></th>
<td class="colLast">
<div class="block">The <code>Class</code> instance representing the primitive type
<code>int</code>.</div>
</td>
</tr>
</tbody>
</table>
</div>
</li>
</ul>
</section>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="constructor.summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<div class="memberSummary">
<table>
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Constructor</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(int)">Integer</a></span>​(int value)</code></th>
<td class="colLast">
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="deprecationComment">It is rarely appropriate to use this constructor.</div>
</div>
</td>
</tr>
<tr class="rowColor">
<th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a href="#%3Cinit%3E(java.lang.String)">Integer</a></span>​(<a href="String.html" title="class in java.lang">String</a> s)</code></th>
<td class="colLast">
<div class="block"><span class="deprecatedLabel">Deprecated.</span>
<div class="deprecationComment">It is rarely appropriate to use this constructor.</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</li>
</ul>
</section>
<!-- ========== METHOD SUMMARY =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<div class="memberSummary">
<div role="tablist" aria-orientation="horizontal"><button role="tab" aria-selected="true" aria-controls="memberSummary_tabpanel" tabindex="0" onkeydown="switchTab(event)" id="t0" class="activeTableTab">All Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t1" class="tableTab" onclick="show(1);">Static Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t2" class="tableTab" onclick="show(2);">Instance Methods</button><button role="tab" aria-selected="false" aria-controls="memberSummary_tabpanel" tabindex="-1" onkeydown="switchTab(event)" id="t4" class="tableTab" onclick="show(8);">Concrete Methods</button></div>
<div id="memberSummary_tabpanel" role="tabpanel">
<table aria-labelledby="t0">
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colSecond" scope="col">Method</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor" id="i0">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#bitCount(int)">bitCount</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns the number of one-bits in the two's complement binary
representation of the specified <code>int</code> value.</div>
</td>
</tr>
<tr class="rowColor" id="i1">
<td class="colFirst"><code>byte</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#byteValue()">byteValue</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns the value of this <code>Integer</code> as a <code>byte</code>
after a narrowing primitive conversion.</div>
</td>
</tr>
<tr class="altColor" id="i2">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#compare(int,int)">compare</a></span>​(int x,
int y)</code></th>
<td class="colLast">
<div class="block">Compares two <code>int</code> values numerically.</div>
</td>
</tr>
<tr class="rowColor" id="i3">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#compareTo(java.lang.Integer)">compareTo</a></span>​(<a href="Integer.html" title="class in java.lang">Integer</a> anotherInteger)</code></th>
<td class="colLast">
<div class="block">Compares two <code>Integer</code> objects numerically.</div>
</td>
</tr>
<tr class="altColor" id="i4">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#compareUnsigned(int,int)">compareUnsigned</a></span>​(int x,
int y)</code></th>
<td class="colLast">
<div class="block">Compares two <code>int</code> values numerically treating the values
as unsigned.</div>
</td>
</tr>
<tr class="rowColor" id="i5">
<td class="colFirst"><code>static <a href="Integer.html" title="class in java.lang">Integer</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#decode(java.lang.String)">decode</a></span>​(<a href="String.html" title="class in java.lang">String</a> nm)</code></th>
<td class="colLast">
<div class="block">Decodes a <code>String</code> into an <code>Integer</code>.</div>
</td>
</tr>
<tr class="altColor" id="i6">
<td class="colFirst"><code><a href="../util/Optional.html" title="class in java.util">Optional</a><<a href="Integer.html" title="class in java.lang">Integer</a>></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#describeConstable()">describeConstable</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns an <a href="../util/Optional.html" title="class in java.util"><code>Optional</code></a> containing the nominal descriptor for this
instance, which is the instance itself.</div>
</td>
</tr>
<tr class="rowColor" id="i7">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#divideUnsigned(int,int)">divideUnsigned</a></span>​(int dividend,
int divisor)</code></th>
<td class="colLast">
<div class="block">Returns the unsigned quotient of dividing the first argument by
the second where each argument and the result is interpreted as
an unsigned value.</div>
</td>
</tr>
<tr class="altColor" id="i8">
<td class="colFirst"><code>double</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#doubleValue()">doubleValue</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns the value of this <code>Integer</code> as a <code>double</code>
after a widening primitive conversion.</div>
</td>
</tr>
<tr class="rowColor" id="i9">
<td class="colFirst"><code>boolean</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equals(java.lang.Object)">equals</a></span>​(<a href="Object.html" title="class in java.lang">Object</a> obj)</code></th>
<td class="colLast">
<div class="block">Compares this object to the specified object.</div>
</td>
</tr>
<tr class="altColor" id="i10">
<td class="colFirst"><code>float</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#floatValue()">floatValue</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns the value of this <code>Integer</code> as a <code>float</code>
after a widening primitive conversion.</div>
</td>
</tr>
<tr class="rowColor" id="i11">
<td class="colFirst"><code>static <a href="Integer.html" title="class in java.lang">Integer</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getInteger(java.lang.String)">getInteger</a></span>​(<a href="String.html" title="class in java.lang">String</a> nm)</code></th>
<td class="colLast">
<div class="block">Determines the integer value of the system property with the
specified name.</div>
</td>
</tr>
<tr class="altColor" id="i12">
<td class="colFirst"><code>static <a href="Integer.html" title="class in java.lang">Integer</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getInteger(java.lang.String,int)">getInteger</a></span>​(<a href="String.html" title="class in java.lang">String</a> nm,
int val)</code></th>
<td class="colLast">
<div class="block">Determines the integer value of the system property with the
specified name.</div>
</td>
</tr>
<tr class="rowColor" id="i13">
<td class="colFirst"><code>static <a href="Integer.html" title="class in java.lang">Integer</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#getInteger(java.lang.String,java.lang.Integer)">getInteger</a></span>​(<a href="String.html" title="class in java.lang">String</a> nm,
<a href="Integer.html" title="class in java.lang">Integer</a> val)</code></th>
<td class="colLast">
<div class="block">Returns the integer value of the system property with the
specified name.</div>
</td>
</tr>
<tr class="altColor" id="i14">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#hashCode()">hashCode</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns a hash code for this <code>Integer</code>.</div>
</td>
</tr>
<tr class="rowColor" id="i15">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#hashCode(int)">hashCode</a></span>​(int value)</code></th>
<td class="colLast">
<div class="block">Returns a hash code for an <code>int</code> value; compatible with
<code>Integer.hashCode()</code>.</div>
</td>
</tr>
<tr class="altColor" id="i16">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#highestOneBit(int)">highestOneBit</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns an <code>int</code> value with at most a single one-bit, in the
position of the highest-order ("leftmost") one-bit in the specified
<code>int</code> value.</div>
</td>
</tr>
<tr class="rowColor" id="i17">
<td class="colFirst"><code>int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#intValue()">intValue</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns the value of this <code>Integer</code> as an
<code>int</code>.</div>
</td>
</tr>
<tr class="altColor" id="i18">
<td class="colFirst"><code>long</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#longValue()">longValue</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns the value of this <code>Integer</code> as a <code>long</code>
after a widening primitive conversion.</div>
</td>
</tr>
<tr class="rowColor" id="i19">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#lowestOneBit(int)">lowestOneBit</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns an <code>int</code> value with at most a single one-bit, in the
position of the lowest-order ("rightmost") one-bit in the specified
<code>int</code> value.</div>
</td>
</tr>
<tr class="altColor" id="i20">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#max(int,int)">max</a></span>​(int a,
int b)</code></th>
<td class="colLast">
<div class="block">Returns the greater of two <code>int</code> values
as if by calling <a href="Math.html#max(int,int)"><code>Math.max</code></a>.</div>
</td>
</tr>
<tr class="rowColor" id="i21">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#min(int,int)">min</a></span>​(int a,
int b)</code></th>
<td class="colLast">
<div class="block">Returns the smaller of two <code>int</code> values
as if by calling <a href="Math.html#min(int,int)"><code>Math.min</code></a>.</div>
</td>
</tr>
<tr class="altColor" id="i22">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#numberOfLeadingZeros(int)">numberOfLeadingZeros</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns the number of zero bits preceding the highest-order
("leftmost") one-bit in the two's complement binary representation
of the specified <code>int</code> value.</div>
</td>
</tr>
<tr class="rowColor" id="i23">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#numberOfTrailingZeros(int)">numberOfTrailingZeros</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns the number of zero bits following the lowest-order ("rightmost")
one-bit in the two's complement binary representation of the specified
<code>int</code> value.</div>
</td>
</tr>
<tr class="altColor" id="i24">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parseInt(java.lang.CharSequence,int,int,int)">parseInt</a></span>​(<a href="CharSequence.html" title="interface in java.lang">CharSequence</a> s,
int beginIndex,
int endIndex,
int radix)</code></th>
<td class="colLast">
<div class="block">Parses the <a href="CharSequence.html" title="interface in java.lang"><code>CharSequence</code></a> argument as a signed <code>int</code> in the
specified <code>radix</code>, beginning at the specified <code>beginIndex</code>
and extending to <code>endIndex - 1</code>.</div>
</td>
</tr>
<tr class="rowColor" id="i25">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parseInt(java.lang.String)">parseInt</a></span>​(<a href="String.html" title="class in java.lang">String</a> s)</code></th>
<td class="colLast">
<div class="block">Parses the string argument as a signed decimal integer.</div>
</td>
</tr>
<tr class="altColor" id="i26">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parseInt(java.lang.String,int)">parseInt</a></span>​(<a href="String.html" title="class in java.lang">String</a> s,
int radix)</code></th>
<td class="colLast">
<div class="block">Parses the string argument as a signed integer in the radix
specified by the second argument.</div>
</td>
</tr>
<tr class="rowColor" id="i27">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parseUnsignedInt(java.lang.CharSequence,int,int,int)">parseUnsignedInt</a></span>​(<a href="CharSequence.html" title="interface in java.lang">CharSequence</a> s,
int beginIndex,
int endIndex,
int radix)</code></th>
<td class="colLast">
<div class="block">Parses the <a href="CharSequence.html" title="interface in java.lang"><code>CharSequence</code></a> argument as an unsigned <code>int</code> in
the specified <code>radix</code>, beginning at the specified
<code>beginIndex</code> and extending to <code>endIndex - 1</code>.</div>
</td>
</tr>
<tr class="altColor" id="i28">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parseUnsignedInt(java.lang.String)">parseUnsignedInt</a></span>​(<a href="String.html" title="class in java.lang">String</a> s)</code></th>
<td class="colLast">
<div class="block">Parses the string argument as an unsigned decimal integer.</div>
</td>
</tr>
<tr class="rowColor" id="i29">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parseUnsignedInt(java.lang.String,int)">parseUnsignedInt</a></span>​(<a href="String.html" title="class in java.lang">String</a> s,
int radix)</code></th>
<td class="colLast">
<div class="block">Parses the string argument as an unsigned integer in the radix
specified by the second argument.</div>
</td>
</tr>
<tr class="altColor" id="i30">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#remainderUnsigned(int,int)">remainderUnsigned</a></span>​(int dividend,
int divisor)</code></th>
<td class="colLast">
<div class="block">Returns the unsigned remainder from dividing the first argument
by the second where each argument and the result is interpreted
as an unsigned value.</div>
</td>
</tr>
<tr class="rowColor" id="i31">
<td class="colFirst"><code><a href="Integer.html" title="class in java.lang">Integer</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#resolveConstantDesc(java.lang.invoke.MethodHandles.Lookup)">resolveConstantDesc</a></span>​(<a href="invoke/MethodHandles.Lookup.html" title="class in java.lang.invoke">MethodHandles.Lookup</a> lookup)</code></th>
<td class="colLast">
<div class="block">Resolves this instance as a <a href="constant/ConstantDesc.html" title="interface in java.lang.constant"><code>ConstantDesc</code></a>, the result of which is
the instance itself.</div>
</td>
</tr>
<tr class="altColor" id="i32">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#reverse(int)">reverse</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns the value obtained by reversing the order of the bits in the
two's complement binary representation of the specified <code>int</code>
value.</div>
</td>
</tr>
<tr class="rowColor" id="i33">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#reverseBytes(int)">reverseBytes</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns the value obtained by reversing the order of the bytes in the
two's complement representation of the specified <code>int</code> value.</div>
</td>
</tr>
<tr class="altColor" id="i34">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateLeft(int,int)">rotateLeft</a></span>​(int i,
int distance)</code></th>
<td class="colLast">
<div class="block">Returns the value obtained by rotating the two's complement binary
representation of the specified <code>int</code> value left by the
specified number of bits.</div>
</td>
</tr>
<tr class="rowColor" id="i35">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#rotateRight(int,int)">rotateRight</a></span>​(int i,
int distance)</code></th>
<td class="colLast">
<div class="block">Returns the value obtained by rotating the two's complement binary
representation of the specified <code>int</code> value right by the
specified number of bits.</div>
</td>
</tr>
<tr class="altColor" id="i36">
<td class="colFirst"><code>short</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#shortValue()">shortValue</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns the value of this <code>Integer</code> as a <code>short</code>
after a narrowing primitive conversion.</div>
</td>
</tr>
<tr class="rowColor" id="i37">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#signum(int)">signum</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns the signum function of the specified <code>int</code> value.</div>
</td>
</tr>
<tr class="altColor" id="i38">
<td class="colFirst"><code>static int</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sum(int,int)">sum</a></span>​(int a,
int b)</code></th>
<td class="colLast">
<div class="block">Adds two integers together as per the + operator.</div>
</td>
</tr>
<tr class="rowColor" id="i39">
<td class="colFirst"><code>static <a href="String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toBinaryString(int)">toBinaryString</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns a string representation of the integer argument as an
unsigned integer in base 2.</div>
</td>
</tr>
<tr class="altColor" id="i40">
<td class="colFirst"><code>static <a href="String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toHexString(int)">toHexString</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns a string representation of the integer argument as an
unsigned integer in base 16.</div>
</td>
</tr>
<tr class="rowColor" id="i41">
<td class="colFirst"><code>static <a href="String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toOctalString(int)">toOctalString</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns a string representation of the integer argument as an
unsigned integer in base 8.</div>
</td>
</tr>
<tr class="altColor" id="i42">
<td class="colFirst"><code><a href="String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th>
<td class="colLast">
<div class="block">Returns a <code>String</code> object representing this
<code>Integer</code>'s value.</div>
</td>
</tr>
<tr class="rowColor" id="i43">
<td class="colFirst"><code>static <a href="String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString(int)">toString</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns a <code>String</code> object representing the
specified integer.</div>
</td>
</tr>
<tr class="altColor" id="i44">
<td class="colFirst"><code>static <a href="String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString(int,int)">toString</a></span>​(int i,
int radix)</code></th>
<td class="colLast">
<div class="block">Returns a string representation of the first argument in the
radix specified by the second argument.</div>
</td>
</tr>
<tr class="rowColor" id="i45">
<td class="colFirst"><code>static long</code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toUnsignedLong(int)">toUnsignedLong</a></span>​(int x)</code></th>
<td class="colLast">
<div class="block">Converts the argument to a <code>long</code> by an unsigned
conversion.</div>
</td>
</tr>
<tr class="altColor" id="i46">
<td class="colFirst"><code>static <a href="String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toUnsignedString(int)">toUnsignedString</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns a string representation of the argument as an unsigned
decimal value.</div>
</td>
</tr>
<tr class="rowColor" id="i47">
<td class="colFirst"><code>static <a href="String.html" title="class in java.lang">String</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toUnsignedString(int,int)">toUnsignedString</a></span>​(int i,
int radix)</code></th>
<td class="colLast">
<div class="block">Returns a string representation of the first argument as an
unsigned integer value in the radix specified by the second
argument.</div>
</td>
</tr>
<tr class="altColor" id="i48">
<td class="colFirst"><code>static <a href="Integer.html" title="class in java.lang">Integer</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(int)">valueOf</a></span>​(int i)</code></th>
<td class="colLast">
<div class="block">Returns an <code>Integer</code> instance representing the specified
<code>int</code> value.</div>
</td>
</tr>
<tr class="rowColor" id="i49">
<td class="colFirst"><code>static <a href="Integer.html" title="class in java.lang">Integer</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String)">valueOf</a></span>​(<a href="String.html" title="class in java.lang">String</a> s)</code></th>
<td class="colLast">
<div class="block">Returns an <code>Integer</code> object holding the
value of the specified <code>String</code>.</div>
</td>
</tr>
<tr class="altColor" id="i50">
<td class="colFirst"><code>static <a href="Integer.html" title="class in java.lang">Integer</a></code></td>
<th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#valueOf(java.lang.String,int)">valueOf</a></span>​(<a href="String.html" title="class in java.lang">String</a> s,
int radix)</code></th>
<td class="colLast">
<div class="block">Returns an <code>Integer</code> object holding the value
extracted from the specified <code>String</code> when parsed
with the radix given by the second argument.</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<ul class="blockList">
<li class="blockList"><a id="methods.inherited.from.class.java.lang.Object">
<!-- -->
</a>
<h3>Methods declared in class java.lang.<a href="Object.html" title="class in java.lang">Object</a></h3>
<code><a href="Object.html#clone()">clone</a>, <a href="Object.html#finalize()">finalize</a>, <a href="Object.html#getClass()">getClass</a>, <a href="Object.html#notify()">notify</a>, <a href="Object.html#notifyAll()">notifyAll</a>, <a href="Object.html#wait()">wait</a>, <a href="Object.html#wait(long)">wait</a>, <a href="Object.html#wait(long,int)">wait</a></code></li>
</ul>
</li>
</ul>
</section>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a id="MIN_VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MIN_VALUE</h4>
<pre><a href="annotation/Native.html" title="annotation in java.lang.annotation">@Native</a>
public static final int MIN_VALUE</pre>
<div class="block">A constant holding the minimum value an <code>int</code> can
have, -2<sup>31</sup>.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#java.lang.Integer.MIN_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a id="MAX_VALUE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MAX_VALUE</h4>
<pre><a href="annotation/Native.html" title="annotation in java.lang.annotation">@Native</a>
public static final int MAX_VALUE</pre>
<div class="block">A constant holding the maximum value an <code>int</code> can
have, 2<sup>31</sup>-1.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#java.lang.Integer.MAX_VALUE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a id="TYPE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TYPE</h4>
<pre>public static final <a href="Class.html" title="class in java.lang">Class</a><<a href="Integer.html" title="class in java.lang">Integer</a>> TYPE</pre>
<div class="block">The <code>Class</code> instance representing the primitive type
<code>int</code>.</div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.1</dd>
</dl>
</li>
</ul>
<a id="SIZE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SIZE</h4>
<pre><a href="annotation/Native.html" title="annotation in java.lang.annotation">@Native</a>
public static final int SIZE</pre>
<div class="block">The number of bits used to represent an <code>int</code> value in two's
complement binary form.</div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.5</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#java.lang.Integer.SIZE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a id="BYTES">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>BYTES</h4>
<pre>public static final int BYTES</pre>
<div class="block">The number of bytes used to represent an <code>int</code> value in two's
complement binary form.</div>
<dl>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>1.8</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#java.lang.Integer.BYTES">Constant Field Values</a></dd>
</dl>
</li>
</ul>
</li>
</ul>
</section>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="constructor.detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a id="<init>(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>Integer</h4>
<pre><a href="Deprecated.html" title="annotation in java.lang">@Deprecated</a>(<a href="Deprecated.html#since()">since</a>="9")
public Integer​(int value)</pre>
<div class="deprecationBlock"><span class="deprecatedLabel">Deprecated.</span>
<div class="deprecationComment">It is rarely appropriate to use this constructor. The static factory
<a href="#valueOf(int)"><code>valueOf(int)</code></a> is generally a better choice, as it is
likely to yield significantly better space and time performance.</div>
</div>
<div class="block">Constructs a newly allocated <code>Integer</code> object that
represents the specified <code>int</code> value.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>value</code> - the value to be represented by the
<code>Integer</code> object.</dd>
</dl>
</li>
</ul>
<a id="<init>(java.lang.String)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Integer</h4>
<pre><a href="Deprecated.html" title="annotation in java.lang">@Deprecated</a>(<a href="Deprecated.html#since()">since</a>="9")
public Integer​(<a href="String.html" title="class in java.lang">String</a> s)
throws <a href="NumberFormatException.html" title="class in java.lang">NumberFormatException</a></pre>
<div class="deprecationBlock"><span class="deprecatedLabel">Deprecated.</span>
<div class="deprecationComment">It is rarely appropriate to use this constructor.
Use <a href="#parseInt(java.lang.String)"><code>parseInt(String)</code></a> to convert a string to a
<code>int</code> primitive, or use <a href="#valueOf(java.lang.String)"><code>valueOf(String)</code></a>
to convert a string to an <code>Integer</code> object.</div>
</div>
<div class="block">Constructs a newly allocated <code>Integer</code> object that
represents the <code>int</code> value indicated by the
<code>String</code> parameter. The string is converted to an
<code>int</code> value in exactly the manner used by the
<code>parseInt</code> method for radix 10.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>s</code> - the <code>String</code> to be converted to an <code>Integer</code>.</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="NumberFormatException.html" title="class in java.lang">NumberFormatException</a></code> - if the <code>String</code> does not
contain a parsable integer.</dd>
</dl>
</li>
</ul>
</li>
</ul>
</section>
<!-- ============ METHOD DETAIL ========== -->
<section role="region">
<ul class="blockList">
<li class="blockList"><a id="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a id="toString(int,int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toString</h4>
<pre class="methodSignature">public static <a href="String.html" title="class in java.lang">String</a> toString​(int i,
int radix)</pre>
<div class="block">Returns a string representation of the first argument in the
radix specified by the second argument.
<p>If the radix is smaller than <code>Character.MIN_RADIX</code>
or larger than <code>Character.MAX_RADIX</code>, then the radix
<code>10</code> is used instead.
<p>If the first argument is negative, the first element of the
result is the ASCII minus character <code>'-'</code>
(<code>'\u002D'</code>). If the first argument is not
negative, no sign character appears in the result.
<p>The remaining characters of the result represent the magnitude
of the first argument. If the magnitude is zero, it is
represented by a single zero character <code>'0'</code>
(<code>'\u0030'</code>); otherwise, the first character of
the representation of the magnitude will not be the zero
character. The following ASCII characters are used as digits:
<blockquote>
<code>0123456789abcdefghijklmnopqrstuvwxyz</code>
</blockquote>
These are <code>'\u0030'</code> through
<code>'\u0039'</code> and <code>'\u0061'</code> through
<code>'\u007A'</code>. If <code>radix</code> is
<var>N</var>, then the first <var>N</var> of these characters
are used as radix-<var>N</var> digits in the order shown. Thus,
the digits for hexadecimal (radix 16) are
<code>0123456789abcdef</code>. If uppercase letters are
desired, the <a href="String.html#toUpperCase()"><code>String.toUpperCase()</code></a> method may
be called on the result:
<blockquote>
<code>Integer.toString(n, 16).toUpperCase()</code>
</blockquote></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>i</code> - an integer to be converted to a string.</dd>
<dd><code>radix</code> - the radix to use in the string representation.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a string representation of the argument in the specified radix.</dd>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="Character.html#MAX_RADIX"><code>Character.MAX_RADIX</code></a>,
<a href="Character.html#MIN_RADIX"><code>Character.MIN_RADIX</code></a></dd>
</dl>
</li>
</ul>
<a id="toUnsignedString(int,int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toUnsignedString</h4>
<pre class="methodSignature">public static <a href="String.html" title="class in java.lang">String</a> toUnsignedString​(int i,
int radix)</pre>
<div class="block">Returns a string representation of the first argument as an
unsigned integer value in the radix specified by the second
argument.