public enum Id3FieldType extends Enum<Id3FieldType>
Enum Constant and Description |
---|
BINARY |
TEXT |
USER_DEFINED_TEXT |
Modifier and Type | Method and Description |
---|---|
static Id3FieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Id3FieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Id3FieldType TEXT
public static final Id3FieldType USER_DEFINED_TEXT
public static final Id3FieldType BINARY
public static Id3FieldType[] values()
for (Id3FieldType c : Id3FieldType.values()) System.out.println(c);
public static Id3FieldType 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.