
wee0.utils.DateUtil Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2016-2022, wee0.com.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
package wee0.utils;
/**
* 日期处理工具便捷操作类
* @author baihw
* @date 2017年2月20日
**/
/**
* * examples:
*
**/
public final class DateUtil{
// 实现类实例
private static final IDateUtil _IMPL = IUtilManager.impl().getDateUtil();
/**
* @return 当前年
*/
public static int getCurrentYear(){
return _IMPL.getCurrentYear();
}
/**
* 获取当前月
*
* @return 数据
*/
public static int getCurrentMonth(){
return _IMPL.getCurrentMonth();
}
/**
* 获取当前日
*
* @return 数据
*/
public static int getCurrentDay(){
return _IMPL.getCurrentDay();
}
/**
* @return 当前日期,以默认格式"yyyy-MM-dd"显示。
*/
public static String getCurrentDate(){
return _IMPL.getCurrentDate();
}
/**
* @return 当前日期时间,以默认格式"yyyy-MM-dd HH:mm:ss"显示。
*/
public static String getCurrentDateTime(){
return _IMPL.getCurrentDateTime();
}
/**
* @return 14位年月日时分秒,中间无空格的当前日期时间。
*/
public static String getCurrentDateTime14(){
return _IMPL.getCurrentDateTime14();
}
/**
* @return 8位年月日格式的当前日期
*/
public static String getCurrentDate8(){
return _IMPL.getCurrentDate8();
}
/**
* @return 6位年月格式的当前日期
*/
public static String getCurrentDate6(){
return _IMPL.getCurrentDate6();
}
} // end class