/* * Units - Temporary implementation for Geotools 2 * Copyright (C) 1998 University Corporation for Atmospheric Research (Unidata) * 1998 Bill Hibbard & al. (VisAD) * 1999 Pêches et Océans Canada * 2000 Institut de Recherche pour le Développement * 2002 Centre for Computational Geography * * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details (http://www.gnu.org/). * * * This package is inspired from the units package of VisAD. * Unidata and Visad's work is fully acknowledged here. * * THIS IS A TEMPORARY CLASS * * This is a placeholder for future Unit class. * This skeleton will be removed when the real classes from * JSR-108: Units specification will be publicly available. */ package org.geotools.units; // Entrés/sorties /** * Représente une transformation entre deux unités * dont les valeurs n'ont qu'à être inversées. * * @source $URL$ * @version 1.0 * @author Martin Desruisseaux * * @deprecated Replaced by the {@link javax.units.Unit} framework. */ final class InverseTransform extends UnitTransform { /** * Serial number for interoperability with different versions. */ private static final long serialVersionUID = 8539885091744917242L; /** * Construit un objet qui aura la charge de convertir * des données exprimées selon les unités spécifiées. */ private InverseTransform(final Unit fromUnit, final Unit toUnit) { super(fromUnit, toUnit); } /** * Construit un objet qui aura la charge de convertir * des données exprimées selon les unités spécifiées. */ public static UnitTransform getInstance(final Unit fromUnit, final Unit toUnit) { return new InverseTransform(fromUnit, toUnit).intern(); } /** * Effectue la conversion d'unités d'une valeur. * @param value Valeur exprimée selon les unités {@link #fromUnit}. * @return Valeur exprimée selon les unités {@link #toUnit}. */ public double convert(final double value) { return 1/value; } /** * Effectue la conversion d'unités d'un tableaux de valeurs. * @param values Valeurs exprimées selon les unités {@link #fromUnit}. * Elles seront converties sur place en valeurs exprimées selon * les unités {@link #toUnits}. */ public void convert(final double[] values) { for (int i=0; i