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

nl.pvanassen.steam.store.history.HistoryRow Maven / Gradle / Ivy

Go to download

A Java API to access the Steam community market through the HTTP interface. This may be against the TOS so be careful using it!

There is a newer version: 3.0.8
Show newest version
package nl.pvanassen.steam.store.history;

import java.util.Date;

/**
 * A row in the steam history
 * 
 * @author Paul van Assen
 */
public class HistoryRow {
    private final String rowName;
    private final Date listed;
    private final Date acted;
    private final int price;

    HistoryRow(String rowName, Date listed, Date acted, int price) {
        super();
        this.rowName = rowName;
        this.listed = listed;
        this.acted = acted;
        this.price = price;
    }

    /**
     * @see java.lang.Object#equals(java.lang.Object)
     */
    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (!(obj instanceof HistoryRow)) {
            return false;
        }
        HistoryRow other = (HistoryRow) obj;
        if (acted == null) {
            if (other.acted != null) {
                return false;
            }
        }
        else if (!acted.equals(other.acted)) {
            return false;
        }
        if (listed == null) {
            if (other.listed != null) {
                return false;
            }
        }
        else if (!listed.equals(other.listed)) {
            return false;
        }
        if (price != other.price) {
            return false;
        }
        if (rowName == null) {
            if (other.rowName != null) {
                return false;
            }
        }
        else if (!rowName.equals(other.rowName)) {
            return false;
        }
        return true;
    }

    /**
     * @return the acted
     */
    public final Date getActed() {
        return new Date(acted.getTime());
    }

    /**
     * @return the listed
     */
    public final Date getListed() {
        return new Date(listed.getTime());
    }

    /**
     * @return the price
     */
    public final int getPrice() {
        return price;
    }

    /**
     * @return the steamId
     */
    public final String getRowName() {
        return rowName;
    }

    /**
     * @see java.lang.Object#hashCode()
     */
    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = (prime * result) + ((acted == null) ? 0 : acted.hashCode());
        result = (prime * result) + ((listed == null) ? 0 : listed.hashCode());
        result = (prime * result) + price;
        result = (prime * result) + ((rowName == null) ? 0 : rowName.hashCode());
        return result;
    }

    /**
     * @see java.lang.Object#toString()
     */
    @Override
    public String toString() {
        return "HistoryRow [steamId=" + rowName + ", listed=" + listed + ", acted=" + acted + ", price=" + price + "]";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy