All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jchanghong.core.convert.impl.StackTraceElementConverter Maven / Gradle / Ivy

The newest version!
package com.jchanghong.core.convert.impl;

import java.util.Map;

import com.jchanghong.core.convert.AbstractConverter;
import com.jchanghong.core.map.MapUtil;
import com.jchanghong.core.util.ObjectUtil;

/**
 * {@link StackTraceElement} 转换器
* 只支持Map方式转换 * * @author Looly * @since 3.0.8 */ public class StackTraceElementConverter extends AbstractConverter { private static final long serialVersionUID = 1L; @Override protected StackTraceElement convertInternal(Object value) { if (value instanceof Map) { final Map map = (Map) value; final String declaringClass = MapUtil.getStr(map, "className"); final String methodName = MapUtil.getStr(map, "methodName"); final String fileName = MapUtil.getStr(map, "fileName"); final Integer lineNumber = MapUtil.getInt(map, "lineNumber"); return new StackTraceElement(declaringClass, methodName, fileName, ObjectUtil.defaultIfNull(lineNumber, 0)); } return null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy