public static enum ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint extends java.lang.Enum<ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint>
| Enum Constant and Description |
|---|
SIZE_16_BITS
16 bits
|
SIZE_8_BITS
8 bits
|
| Modifier and Type | Method and Description |
|---|---|
static ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint |
getBitsPerIndexPoint(int bitsPerIndexPoint)
convert an integral value to its corresponding enum.
|
java.lang.String |
toString() |
static ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint SIZE_8_BITS
public static final ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint SIZE_16_BITS
public static ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint[] values()
for (ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint c : ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint.values()) System.out.println(c);
public static ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint>public static ID3v24FrameBodyAudioSeekPointIndex.BitsPerIndexPoint getBitsPerIndexPoint(int bitsPerIndexPoint)
bitsPerIndexPoint - the integral value that is to be converted to a BitsPerIndexPoint enum.java.lang.IllegalArgumentException - if there is no BitsPerIndexPoint enum whose ordinal value corresponds to the given integral value.