All Downloads are FREE. Search and download functionalities are using the official Maven repository.

angry1980.audio.model.Peak Maven / Gradle / Ivy

There is a newer version: 0.0.10
Show newest version
package angry1980.audio.model;

public class Peak {

    private long trackId;
    private final int time;
    private final long hash;

    public Peak(long trackId, int time, long hash) {
        this.trackId = trackId;
        this.time = time;
        this.hash = hash;
    }

    public long getTrackId() {
        return trackId;
    }

    public int getTime() {
        return time;
    }

    public long getHash() {
        return hash;
    }

    @Override
    public String toString() {
        return "Peak{" +
                "time=" + time +
                ", trackId=" + trackId +
                ", hash=" + hash +
                '}';
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy