| java.lang.Object | |
| ↳ | com.google.code.com.sun.mail.util.ASCIIUtility |
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Convert the bytes within the specified range of the given byte
array into a signed integer in the given radix .
| |||||||||||
Convert the bytes within the specified range of the given byte
array into a signed integer .
| |||||||||||
Convert the bytes within the specified range of the given byte
array into a signed long in the given radix .
| |||||||||||
Convert the bytes within the specified range of the given byte
array into a signed long .
| |||||||||||
Convert the bytes within the specified range of the given byte
array into a String.
| |||||||||||
Convert the bytes into a String.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
| s |
|---|
| is |
|---|
| IOException |
|---|
Convert the bytes within the specified range of the given byte
array into a signed integer in the given radix . The range extends
from start till, but not including end.
Based on java.lang.Integer.parseInt()
| b | |
|---|---|
| start | |
| end | |
| radix |
| NumberFormatException |
|---|
Convert the bytes within the specified range of the given byte
array into a signed integer . The range extends from
start till, but not including end.
| b | |
|---|---|
| start | |
| end |
| NumberFormatException |
|---|
Convert the bytes within the specified range of the given byte
array into a signed long in the given radix . The range extends
from start till, but not including end.
Based on java.lang.Long.parseLong()
| b | |
|---|---|
| start | |
| end | |
| radix |
| NumberFormatException |
|---|
Convert the bytes within the specified range of the given byte
array into a signed long . The range extends from
start till, but not including end.
| b | |
|---|---|
| start | |
| end |
| NumberFormatException |
|---|
Convert the bytes within the specified range of the given byte
array into a String. The range extends from start
till, but not including end.
| b | |
|---|---|
| start | |
| end |
Convert the bytes into a String.
| b |
|---|
| is |
|---|