public enum VolumeFormat extends Enum<VolumeFormat>
Enum Constant and Description |
---|
COW |
RAW |
Unassigned |
UNUSED0 |
UNUSED1 |
UNUSED2 |
Modifier and Type | Method and Description |
---|---|
static VolumeFormat |
forValue(int value) |
int |
getValue() |
static VolumeFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VolumeFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VolumeFormat UNUSED0
public static final VolumeFormat UNUSED1
public static final VolumeFormat UNUSED2
public static final VolumeFormat Unassigned
public static final VolumeFormat COW
public static final VolumeFormat RAW
public static VolumeFormat[] values()
for (VolumeFormat c : VolumeFormat.values()) System.out.println(c);
public static VolumeFormat 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 int getValue()
public static VolumeFormat forValue(int value)
Copyright © 2012. All Rights Reserved.