|
|
|
@ -37,6 +37,15 @@ public class ParameterKit {
|
|
|
|
|
return new Parameter(name, value); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 根据参数名创建新的参数对象 |
|
|
|
|
* @param name 参数名 |
|
|
|
|
* @return 参数对象 |
|
|
|
|
*/ |
|
|
|
|
public static @NotNull ParameterProvider createNewParameter(String name) { |
|
|
|
|
return new Parameter(name); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 从字符串中分析中有哪些需要的参数 |
|
|
|
|
* |
|
|
|
@ -90,12 +99,5 @@ public class ParameterKit {
|
|
|
|
|
return ParameterMapNameSpace.create(ps); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 根据参数名创建新的参数对象 |
|
|
|
|
* @param content 参数名 |
|
|
|
|
* @return 参数对象 |
|
|
|
|
*/ |
|
|
|
|
public static @NotNull ParameterProvider createNewParameter(String content) { |
|
|
|
|
return new Parameter(content); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|