Class ID3Tags.ID3Comment

  • Enclosing interface:
    ID3Tags

    public static class ID3Tags.ID3Comment
    extends java.lang.Object
    Represents a comments in ID3 (especially ID3 v2), where are made up of several parts
    • Constructor Summary

      Constructors 
      Constructor Description
      ID3Comment​(java.lang.String id3v1Text)
      Creates an ID3 v1 style comment tag
      ID3Comment​(java.lang.String language, java.lang.String description, java.lang.String text)
      Creates an ID3 v2 style comment tag
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      Gets the description, if present
      java.lang.String getLanguage()
      Gets the language, if present
      java.lang.String getText()
      Gets the text, if present
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ID3Comment

        public ID3Comment​(java.lang.String id3v1Text)
        Creates an ID3 v1 style comment tag
      • ID3Comment

        public ID3Comment​(java.lang.String language,
                          java.lang.String description,
                          java.lang.String text)
        Creates an ID3 v2 style comment tag
    • Method Detail

      • getLanguage

        public java.lang.String getLanguage()
        Gets the language, if present
      • getDescription

        public java.lang.String getDescription()
        Gets the description, if present
      • getText

        public java.lang.String getText()
        Gets the text, if present