/* * Stat.java * * Version: $Revision: 3734 $ * * Date: $Date: 2009-04-24 04:00:19 +0000 (Fri, 24 Apr 2009) $ * * Copyright (c) 2002-2009, The DSpace Foundation. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * - Neither the name of the DSpace Foundation nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH * DAMAGE. */ package org.dspace.app.statistics; /** * This is a primitive class to represent a single statistic, which will * generally be a key value pair but with the capabilities for being sorted * * Note: this class has a natural ordering that is inconsistent with equals * * @author Richard Jones */ public class Stat implements Comparable { // FIXME: this class is functional but a bit messy, and should be neatened // up and completed /** the key, which is effectively the text of the statistic */ private String key = null; /** the value assigned to the key, generally a count of the key */ private int value = 0; /** a reference to an external resource which relates to this statistic */ private String reference = null; /** the units that this statistic is in */ private String units = null; /** * constructor to create new statistic * * @param key the key for the statistic * @param value the value for the statistic */ Stat(String key, int value) { this.key = key; this.value = value; } /** * constructor to create new statistic * * @param key the key for the statistic * @param value the value for the statistic * @param reference the value for the external reference */ Stat(String key, int value, String reference) { this.key = key; this.value = value; this.reference = reference; } /** * set the units of this statistic * * @param unit the units that this statistic is measured in */ public void setUnits(String unit) { this.units = unit; } /** * get the unts that this statistic is measured in * * @return the units this statistic is measured in */ public String getUnits() { return this.units; } /** * get the value of the statistic * * @return the value of this statistic */ public int getValue() { return this.value; } /** * get the key (text describing) the statistic * * @return the key for this statistic */ public String getKey() { return this.key; } /** * get the reference to related statistic information * * @return the reference for this statistic */ public String getReference() { return this.reference; } /** * set the reference information * * @param key the key for this statistic */ public void setKey(String key) { this.key = key; } /** * set the reference information * * @param reference the reference for this statistic */ public void setReference(String reference) { this.reference = reference; } /** * compare the current object to the given object returning -1 if o is less * than the current object, 0 if they are the same, and +1 if o is greater * than the current object. * * @param o the object to compare to the current one * * @return +1, 0, -1 if o is less than, equal to, or greater than the * current object value. */ public int compareTo(Object o) { int objectValue = ((Stat) o).getValue(); if (objectValue < this.getValue()) { return -1; } else if (objectValue == this.getValue()) { return 0; } else if (objectValue > this.getValue()) { return 1; } return 0; } }