public enum ByteUnit extends Enum<ByteUnit>
Modifier and Type | Method and Description |
---|---|
static float |
convert(long bytes,
ByteUnit bu) |
long |
getBytes() |
static ByteUnit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ByteUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ByteUnit BYTE
public static final ByteUnit KB
public static final ByteUnit MB
public static final ByteUnit GB
public static ByteUnit[] values()
for (ByteUnit c : ByteUnit.values()) System.out.println(c);
public static ByteUnit valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic long getBytes()
public static float convert(long bytes, ByteUnit bu)
Copyright © 2008–2016. All rights reserved.