FileDocCategorySizeDatePackage
ReceivedAsTypes.javaAPI DocJaudiotagger 2.0.42317Wed Mar 30 16:12:04 BST 2011org.jaudiotagger.tag.id3.valuepair

ReceivedAsTypes

public class ReceivedAsTypes extends org.jaudiotagger.tag.datatype.AbstractIntStringValuePair
Defines how song was purchased used by the COMR frame

Fields Summary
public static final int
RECEIVED_AS_FIELD_SIZE
private static ReceivedAsTypes
receivedAsTypes
Constructors Summary
private ReceivedAsTypes()

        idToValue.put(0x00, "Other");
        idToValue.put(0x01, "Standard CD album with other songs");
        idToValue.put(0x02, "Compressed audio on CD");
        idToValue.put(0x03, "File over the Internet");
        idToValue.put(0x04, "Stream over the Internet");
        idToValue.put(0x05, "As note sheets");
        idToValue.put(0x06, "As note sheets in a book with other sheets");
        idToValue.put(0x07, "Music on other media");
        idToValue.put(0x08, "Non-musical merchandise");
        createMaps();
    
Methods Summary
public static org.jaudiotagger.tag.id3.valuepair.ReceivedAsTypesgetInstanceOf()


       
    
        if (receivedAsTypes == null)
        {
            receivedAsTypes = new ReceivedAsTypes();
        }
        return receivedAsTypes;