public enum BlockType extends Enum<BlockType>
Enum Constant and Description |
---|
APPLICATION |
CUESHEET |
PADDING |
PICTURE |
SEEKTABLE |
STREAMINFO |
VORBIS_COMMENT |
Modifier and Type | Method and Description |
---|---|
int |
getId() |
static BlockType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockType STREAMINFO
public static final BlockType PADDING
public static final BlockType APPLICATION
public static final BlockType SEEKTABLE
public static final BlockType VORBIS_COMMENT
public static final BlockType CUESHEET
public static final BlockType PICTURE
public static BlockType[] values()
for (BlockType c : BlockType.values()) System.out.println(c);
public static BlockType 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 getId()
Copyright © 2005–2020 jthink.net. All rights reserved.