| Package | Description |
|---|---|
| java.lang | |
| java.math |
Provides classes for performing arbitrary-precision integer
arithmetic (
BigInteger) and arbitrary-precision decimal
arithmetic (BigDecimal). |
| java.util.zip |
Provides classes for reading and writing the standard ZIP and GZIP
file formats.
|
| Modifier and Type | Method and Description |
|---|---|
protected Object |
Thread.clone()
Throws CloneNotSupportedException as a Thread can not be meaningfully
cloned.
|
void |
Thread.run()
If this thread was constructed using a separate
Runnable run object, then that
Runnable object's run method is called;
otherwise, this method does nothing and returns. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
BigDecimal.equals(Object x)
Compares this
BigDecimal with the specified
Object for equality. |
int |
BigDecimal.hashCode()
Returns the hash code for this
BigDecimal. |
String |
BigDecimal.toString()
Returns the string representation of this
BigDecimal,
using scientific notation if an exponent is needed. |
| Modifier and Type | Method and Description |
|---|---|
void |
ZipInputStream.mark(int readlimit) |
boolean |
ZipInputStream.markSupported() |
int |
ZipInputStream.read() |
int |
ZipInputStream.read(byte[] b) |
void |
ZipInputStream.reset() |
Copyright © 2013 API Design. All Rights Reserved.