本文整理汇总了Java中org.febit.convert.Convert.toBool方法的典型用法代码示例。如果您正苦于以下问题:Java Convert.toBool方法的具体用法?Java Convert.toBool怎么用?Java Convert.toBool使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.febit.convert.Convert
的用法示例。
在下文中一共展示了Convert.toBool方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: resolve
import org.febit.convert.Convert; //导入方法依赖的package包/类
@Override
public Object resolve(ActionRequest request, Class type, String name, int index) {
final String raw = request.getParameter(name);
if (type == String.class) {
return raw;
}
if (type == int.class) {
if (raw == null || raw.length() == 0) {
return 0;
}
return Convert.toInt(raw);
}
if (type == long.class) {
if (raw == null || raw.length() == 0) {
return 0;
}
return Convert.toLong(raw);
}
if (type == boolean.class) {
return Convert.toBool(raw);
}
if (raw == null) {
return null;
}
if (type == Boolean.class) {
return Convert.toBool(raw);
}
if (raw.length() == 0) {
return null;
}
if (type == Integer.class) {
return Convert.toInt(raw);
}
if (type == Long.class) {
return Convert.toLong(raw);
}
return null;
}
示例2: getBool
import org.febit.convert.Convert; //导入方法依赖的package包/类
public boolean getBool(String key) {
return Convert.toBool(get(key));
}