/* * Jajuk * Copyright (C) The Jajuk Team * http://jajuk.info * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ package org.jajuk.ui.helpers; import org.jajuk.util.UtilString; /** * A duration encapsulates a track or album length in secs, it is mainly used in * tables to ease the cell renderers recognition. */ public class Duration implements Comparable<Duration> { private final long duration; /** * The Constructor. * * @param duration item duration in secs */ public Duration(long duration) { this.duration = duration; } /** * Return a string representation of this duration with zero paddings. * * @return the string */ @Override public String toString() { return UtilString.formatTimeBySec(duration); } /* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { // also exlcudes null obj if (obj instanceof Duration) { return duration == ((Duration) obj).duration; } return false; } /* (non-Javadoc) * @see java.lang.Comparable#compareTo(java.lang.Object) */ @Override public int compareTo(Duration other) { if (other == null) { // not equal if the other element is null return -1; } return (int) (duration - other.getDuration()); } /** * Gets the duration. * * @return the duration */ public long getDuration() { return this.duration; } /* (non-Javadoc) * @see java.lang.Object#hashCode() */ @Override public int hashCode() { return Long.valueOf(duration).hashCode(); } }