Uses of Class
org.jaudiotagger.audio.asf.tag.AsfFieldKey

Packages that use AsfFieldKey
org.jaudiotagger.audio.asf.tag   
 

Uses of AsfFieldKey in org.jaudiotagger.audio.asf.tag
 

Fields in org.jaudiotagger.audio.asf.tag with type parameters of type AsfFieldKey
static java.util.Set<AsfFieldKey> AsfTag.COMMON_FIELDS
          Stores a list of field keys, which identify common fields.
private static java.util.Map<java.lang.String,AsfFieldKey> AsfFieldKey.FIELD_ID_MAP
          Stores the fieldName to the field key.
private static java.util.EnumMap<FieldKey,AsfFieldKey> AsfTag.TAGFIELD_TO_ASFFIELD
          This map contains the mapping from FieldKey to AsfFieldKey.
 

Methods in org.jaudiotagger.audio.asf.tag that return AsfFieldKey
static AsfFieldKey AsfFieldKey.getAsfFieldKey(java.lang.String fieldName)
          Searches for an ASF field key which represents the given id string.
static AsfFieldKey AsfFieldKey.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AsfFieldKey[] AsfFieldKey.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.jaudiotagger.audio.asf.tag with parameters of type AsfFieldKey
 AsfTagTextField AsfTag.createTagField(AsfFieldKey asfFieldKey, java.lang.String value)
          Create tag text field using ASF key

Uses the correct subclass for the key.

 void AsfTag.deleteTagField(AsfFieldKey fieldKey)
          Removes all fields which are stored to the provided field key.
 

Constructors in org.jaudiotagger.audio.asf.tag with parameters of type AsfFieldKey
AbstractAsfTagImageField(AsfFieldKey field)
          Creates a image tag field.
AsfTagField(AsfFieldKey field)
          Creates a tag field.
AsfTagTextField(AsfFieldKey field, java.lang.String value)
          Creates a tag text field and assigns the string value.