FileDocCategorySizeDatePackage
AppleStoreCountryCodeBox.javaAPI Docmp4parser 1.0-RC-171772Wed Dec 19 20:10:37 GMT 2012com.coremedia.iso.boxes.apple

AppleStoreCountryCodeBox

public class AppleStoreCountryCodeBox extends AbstractAppleMetaDataBox
itunes MetaData comment box.

Fields Summary
private static Map
countryCodes
public static final String
TYPE
Constructors Summary
public AppleStoreCountryCodeBox()



      
        super(TYPE);
        appleDataBox = AppleDataBox.getUint32AppleDataBox();
    
Methods Summary
public java.lang.StringgetReadableValue()

        if (countryCodes.containsKey(getValue())) {
            return countryCodes.get(getValue());
        } else {
            return "unknown country code " + getValue();
        }