
net.kemitix.itunes.medialibrary.AlbumTrack Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of itunes-medialibrary Show documentation
Show all versions of itunes-medialibrary Show documentation
Java library for reading/writing to the iTunes MediaLibrary SQLite database
The newest version!
package net.kemitix.itunes.medialibrary;
import lombok.Getter;
import lombok.Setter;
@Setter
@Getter
public class AlbumTrack {
//album_artist.album_artist,
private String albumArtist;
//album.album,
private String albumTitle;
//item_extra.title,
private String trackTitle;
//item_artist.item_artist,
private String trackArtist;
//item_extra.year,
private int year;
//item_extra.location,
private String fileLocation;
//item.item_pid
private long id;
}