public enum ID3v1FieldKey extends Enum<ID3v1FieldKey>
Enum Constant and Description |
---|
ALBUM |
ARTIST |
COMMENT |
GENRE |
TITLE |
TRACK |
YEAR |
Modifier and Type | Method and Description |
---|---|
static ID3v1FieldKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ID3v1FieldKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ID3v1FieldKey ARTIST
public static final ID3v1FieldKey ALBUM
public static final ID3v1FieldKey GENRE
public static final ID3v1FieldKey TITLE
public static final ID3v1FieldKey YEAR
public static final ID3v1FieldKey TRACK
public static final ID3v1FieldKey COMMENT
public static ID3v1FieldKey[] values()
for (ID3v1FieldKey c : ID3v1FieldKey.values()) System.out.println(c);
public static ID3v1FieldKey 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 © 2005–2020 jthink.net. All rights reserved.