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

ucar.units.UnknownBaseQuantity Maven / Gradle / Ivy

Go to download

The ucar.units Java package is for decoding and encoding formatted unit specifications (e.g. "m/s"), converting numeric values between compatible units (e.g. between "m/s" and "knot"), and for performing arithmetic operations on units (e.g. dividing one unit by another, or raising a unit to a power).

The newest version!
/*
 * Copyright (c) 1998-2018 University Corporation for Atmospheric Research/Unidata
 * See LICENSE for license information.
 */
package ucar.units;

/**
 * Provides support for an unknown base quantity.
 * 
 * @author Steven R. Emmerson
 */
public final class UnknownBaseQuantity extends BaseQuantity {
	private static final long	serialVersionUID	= 1L;

	/**
	 * Constructs from nothing.
	 */
	protected UnknownBaseQuantity() {
		super("Unknown", "x", true);
	}

	/**
	 * Indicates if this quantity is semantically the same as an object. Unknown
	 * quantities are never equal by definition -- not even to itself.
	 * 
	 * @param object
	 *            The object.
	 * @return false always.
	 */
	@Override
	public boolean equals(final Object object) {
		return false;
	}

	/**
	 * Returns the hash code of this instance.
	 * 
	 * @return The hash code of this instance.
	 */
	@Override
	public int hashCode() {
		return System.identityHashCode(this);
	}

	/**
	 * Indicates if this quantity is dimensionless. Unknown quantities are never
	 * dimensionless by definition.
	 * 
	 * @return false always.
	 */
	@Override
	public boolean isDimensionless() {
		return false;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy