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

com.hwaipy.quantity.UnitPrefix Maven / Gradle / Ivy

The newest version!
package com.hwaipy.quantity;

/**
 * @author Hwaipy 2015-3-15
 */
public class UnitPrefix {

  private final String prefix;
  private final double factor;
  private final String name;

  public UnitPrefix(String prefix, String name, double factor) {
    this.prefix = prefix;
    this.name = name;
    this.factor = factor;
  }

  public String getPrefix() {
    return prefix;
  }

  public double getFactor() {
    return factor;
  }

  public String getName() {
    return name;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy