插件开发工具库,推荐依赖该工具库。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

38 lines
879 B

package com.fanruan.api.report;
import com.fr.stable.unit.UNIT;
import com.fr.stable.unit.UnitUtils;
public class UnitKit {
/**
* 数值转化成英尺单位
*
* @param doubleString
* @return 转化后的单位
*/
public static UNIT unit4CompatibleInchDV(String doubleString) {
return UnitUtils.unit4CompatibleInchDV(doubleString);
}
/**
* 数值转化成毫米单位
*
* @param doubleString
* @return 转化后的单位
*/
public static UNIT unit4CompatibleMMDV(String doubleString) {
return UnitUtils.unit4CompatibleMMDV(doubleString);
}
/**
* 两个单位相减取绝对值
*
* @param a 单位a
* @param b 单位b
* @return 两个单位差值的绝对值
*/
public static UNIT abs(UNIT a, UNIT b) {
return UnitUtils.abs(a, b);
}
}