forked from fanruan/finekit
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.
16 lines
425 B
16 lines
425 B
6 years ago
|
package com.fanruan.api.util;
|
||
|
|
||
|
import com.fr.stable.StableUtils;
|
||
|
|
||
|
public class StableKit {
|
||
|
|
||
|
/**
|
||
|
* 判断一个对象是否可以转化为公式
|
||
|
* @param object 要判断的字符串
|
||
|
* @return 如果该字符串是以"="开头,说明可以转化成公式,否则不能转化成公式
|
||
|
*/
|
||
|
public static boolean canBeFormula(Object object){
|
||
|
return StableUtils.canBeFormula(object);
|
||
|
}
|
||
|
}
|