| 限定符和类型 | 方法和说明 |
|---|---|
int |
compareTo(DataSize other) |
boolean |
equals(java.lang.Object other) |
int |
hashCode() |
boolean |
isNegative()
Checks if this size is negative, excluding zero.
|
static DataSize |
of(long amount,
DataUnit unit)
|
static DataSize |
ofBytes(long bytes)
Obtain a
DataSize representing the specified number of bytes. |
static DataSize |
ofGigabytes(long gigabytes)
Obtain a
DataSize representing the specified number of gigabytes. |
static DataSize |
ofKilobytes(long kilobytes)
Obtain a
DataSize representing the specified number of kilobytes. |
static DataSize |
ofMegabytes(long megabytes)
Obtain a
DataSize representing the specified number of megabytes. |
static DataSize |
ofTerabytes(long terabytes)
Obtain a
DataSize representing the specified number of terabytes. |
static DataSize |
parse(java.lang.CharSequence text)
|
static DataSize |
parse(java.lang.CharSequence text,
DataUnit defaultUnit)
|
long |
toBytes()
Return the number of bytes in this instance.
|
long |
toGigabytes()
Return the number of gigabytes in this instance.
|
long |
toKilobytes()
Return the number of kilobytes in this instance.
|
long |
toMegabytes()
Return the number of megabytes in this instance.
|
java.lang.String |
toString() |
long |
toTerabytes()
Return the number of terabytes in this instance.
|
public static DataSize ofBytes(long bytes)
DataSize representing the specified number of bytes.bytes - the number of bytes, positive or negativeDataSizepublic static DataSize ofKilobytes(long kilobytes)
DataSize representing the specified number of kilobytes.kilobytes - the number of kilobytes, positive or negativeDataSizepublic static DataSize ofMegabytes(long megabytes)
DataSize representing the specified number of megabytes.megabytes - the number of megabytes, positive or negativeDataSizepublic static DataSize ofGigabytes(long gigabytes)
DataSize representing the specified number of gigabytes.gigabytes - the number of gigabytes, positive or negativeDataSizepublic static DataSize ofTerabytes(long terabytes)
DataSize representing the specified number of terabytes.terabytes - the number of terabytes, positive or negativeDataSizepublic static DataSize of(long amount, DataUnit unit)
amount - the amount of the size, measured in terms of the unit, positive or
negativeDataSizepublic static DataSize parse(java.lang.CharSequence text)
DataSize from a text string such as 12MB using
DataUnit.BYTES if no unit is specified.
Examples:
"12KB" -- parses as "12 kilobytes" "5MB" -- parses as "5 megabytes" "20" -- parses as "20 bytes"
text - the text to parseDataSizeparse(CharSequence, DataUnit)public static DataSize parse(java.lang.CharSequence text, DataUnit defaultUnit)
DataSize from a text string such as 12MB using the
specified default DataUnit if no unit is specified.
The string starts with a number followed optionally by a unit matching one of
the supported suffixes.
Examples:
"12KB" -- parses as "12 kilobytes" "5MB" -- parses as "5 megabytes" "20" -- parses as "20 kilobytes" (where thedefaultUnitisDataUnit.KILOBYTES)
text - the text to parseDataSizepublic boolean isNegative()
public long toBytes()
public long toKilobytes()
public long toMegabytes()
public long toGigabytes()
public long toTerabytes()
public java.lang.String toString()
toString 在类中 java.lang.Objectpublic boolean equals(java.lang.Object other)
equals 在类中 java.lang.Objectpublic int hashCode()
hashCode 在类中 java.lang.ObjectCopyright © 2019 TODAY. All rights reserved.