public static enum MetadataBlockHeader.MetadataBlockType extends Enum<MetadataBlockHeader.MetadataBlockType>
| Enum Constant and Description |
|---|
APPLICATION
Application meta-block
|
CUESHEET
Cuesheet meta-block
|
PADDING
A meta-block to pad the stream, allowing other meta-data to be
written in the future without re-writing the entire stream.
|
PICTURE
A meta-block to store an image, such as cover-art
|
SEEKTABLE
A meta-block which aids in seeking in the stream
|
STREAMINFO
A meta-block containing stream configuration information
|
VORBIS_COMMENT
A meta-block for tags/comments
|
| Modifier and Type | Method and Description |
|---|---|
static MetadataBlockHeader.MetadataBlockType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetadataBlockHeader.MetadataBlockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetadataBlockHeader.MetadataBlockType STREAMINFO
public static final MetadataBlockHeader.MetadataBlockType PADDING
public static final MetadataBlockHeader.MetadataBlockType APPLICATION
public static final MetadataBlockHeader.MetadataBlockType SEEKTABLE
public static final MetadataBlockHeader.MetadataBlockType VORBIS_COMMENT
public static final MetadataBlockHeader.MetadataBlockType CUESHEET
public static final MetadataBlockHeader.MetadataBlockType PICTURE
public static MetadataBlockHeader.MetadataBlockType[] values()
for (MetadataBlockHeader.MetadataBlockType c : MetadataBlockHeader.MetadataBlockType.values()) System.out.println(c);
public static MetadataBlockHeader.MetadataBlockType 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 nullCopyright © 2017. All rights reserved.