public override IQuantity <double> From(IQuantity <double> quantity) { return(Joule.From(quantity)); }
public bool /* IEquatable<Joule> */ Equals(Joule other) { return(this.m_value == other.m_value); }
public int /* IComparable<Joule> */ CompareTo(Joule other) { return(this.m_value.CompareTo(other.m_value)); }