Package org.jaudiotagger.tag

Examples of org.jaudiotagger.tag.KeyNotFoundException


  }
 
  public static FieldKeyMeta getFieldKeyMeta(FieldKey key) {
    FieldKeyMeta keyMeta = meta.get(key);
    if (keyMeta == null) {
      throw new KeyNotFoundException();
    }
    return keyMeta;
  }
View Full Code Here


   * @return human readable field name
   */
  public static String getDisplayName(FieldKey key) throws KeyNotFoundException {
    FieldKeyMeta keyMeta = meta.get(key);
    if (keyMeta == null) {
      throw new KeyNotFoundException();
    }
    return keyMeta.getDisplayName();
  }
View Full Code Here

   * @return priority of displaying field for user
   */
  public static int getPriority(FieldKey key) throws KeyNotFoundException {
    FieldKeyMeta keyMeta = meta.get(key);
    if (keyMeta == null) {
      throw new KeyNotFoundException();
    }
    return keyMeta.getPriority();
  }
View Full Code Here

TOP

Related Classes of org.jaudiotagger.tag.KeyNotFoundException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.