package com.fanruan.api.base;

import com.fr.base.Parameter;
import com.fr.base.ParameterHelper;

/**
 * @author Kalven
 * @version 10.0
 * Created by Kalven on 2019/8/30
 */
public class ParameterHelperKit {
    /**
     * 从字符串中分析中有哪些需要的参数
     * @param text 待分析字符串
     * @param hasColumnRow 是否需要分析格子类型的参数
     * @return 字符串中包含的参数集合
     */
    public static Parameter[] analyze4Parameters(String text, boolean hasColumnRow) {
        return ParameterHelper.analyze4Parameters(text, hasColumnRow);
    }
}