FileDocCategorySizeDatePackage
StringNullTerminated.javaAPI DocJaudiotagger 2.0.42204Wed Mar 30 16:12:12 BST 2011org.jaudiotagger.tag.datatype

StringNullTerminated

public class StringNullTerminated extends TextEncodedStringNullTerminated
Represents a String whose size is determined by finding of a null character at the end of the String with fixed text encoding.

The String will be encoded using the default encoding regardless of what encoding may be specified in the framebody

Fields Summary
Constructors Summary
public StringNullTerminated(String identifier, org.jaudiotagger.tag.id3.AbstractTagFrameBody frameBody)
Creates a new ObjectStringNullTerminated datatype.

param
identifier identifies the frame type
param
frameBody

        super(identifier, frameBody);
    
public StringNullTerminated(StringNullTerminated object)

        super(object);
    
Methods Summary
public booleanequals(java.lang.Object obj)

        return obj instanceof StringNullTerminated && super.equals(obj);
    
protected java.lang.StringgetTextEncodingCharSet()

        return TextEncoding.CHARSET_ISO_8859_1;