|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<MetadataBlockHeader.MetadataBlockType> javaFlacEncoder.MetadataBlockHeader.MetadataBlockType
public static enum MetadataBlockHeader.MetadataBlockType
Enum containing the different Metadata block types. See the FLAC spec for more information on the various types.
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
static MetadataBlockHeader.MetadataBlockType |
valueOf(java.lang.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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
public static MetadataBlockHeader.MetadataBlockType[] values()
for (MetadataBlockHeader.MetadataBlockType c : MetadataBlockHeader.MetadataBlockType.values()) System.out.println(c);
public static MetadataBlockHeader.MetadataBlockType 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |