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

com.xiaoleilu.hutool.convert.impl.TimeZoneConverter Maven / Gradle / Ivy

package com.xiaoleilu.hutool.convert.impl;

import java.util.TimeZone;

import com.xiaoleilu.hutool.convert.AbstractConverter;

/**
 * TimeZone转换器
 * @author Looly
 *
 */
public class TimeZoneConverter extends AbstractConverter{

	@Override
	protected TimeZone convertInternal(Object value) {
		return TimeZone.getTimeZone(convertToStr(value));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy