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

com.xiaoleilu.hutool.date.format.DateBasic Maven / Gradle / Ivy

package com.xiaoleilu.hutool.date.format;

import java.util.Locale;
import java.util.TimeZone;

/**
 * 日期基本信息获取接口
 * 
 * @author Looly
 * @since 2.16.2
 */
public interface DateBasic {
	/**
	 * 获得日期格式化或者转换的格式
	 * 
	 * @return {@link java.text.SimpleDateFormat}兼容的格式
	 */
	String getPattern();

	/**
	 * 获得时区
	 * 
	 * @return {@link TimeZone}
	 */
	TimeZone getTimeZone();

	/**
	 * 获得 日期地理位置
	 * 
	 * @return {@link Locale}
	 */
	Locale getLocale();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy