blob: 6e4a2a08a0b932e3ce8db96023abb5e6795f5875 [file] [log] [blame]
/**
* Copyright (c) 2012, 2013, Werner Keil and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Werner Keil - initial API and implementation
*/
package org.eclipse.uomo.examples.units.console.sandbox;
import static org.eclipse.uomo.examples.units.types.GermanObsolete.*;
import static org.eclipse.uomo.units.impl.system.USCustomary.FOOT;
import static org.eclipse.uomo.units.SI.*;
import org.eclipse.uomo.examples.units.types.PolishObsolete;
import org.eclipse.uomo.units.IMeasure;
import org.eclipse.uomo.units.impl.BaseAmount;
import org.unitsofmeasurement.quantity.Length;
/**
* @author Werner Keil
*
*/
public class ObsoleteUnitsExample {
/**
* @param args
*/
@SuppressWarnings("deprecation")
public static void main(String[] args) {
IMeasure<Length> l = BaseAmount.valueOf(10, METRE);
System.out.println(l);
System.out.println(l.to(FOOT));
System.out.println(l.to(FOOT_ZURICH));
System.out.println(l.to(STONE_FOOT));
System.out.println(l.to(FOOT_LAUSANNE));
System.out.println(l.to(ELL_NORTH));
System.out.println(l.to(ELL_SOUTH));
System.out.println(l.to(PolishObsolete.ELL));
}
}