org.bhu.time.utils.TimeFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Baturu Show documentation
Show all versions of Baturu Show documentation
This is a IO library for NLP
package org.bhu.time.utils;
public enum TimeFormat {
YYYY_MM_DD("yyyy-MM-dd"), YYYY_MM_DD2("yyyy/MM/dd"), YYYY_MM_DD_HHMMSS("yyyy-MM-dd HH:mm:ss"), YYYY_MM("yyyy-MM"),
YYYY("yyyy"), YYYY_MM_DD_HHMMSS_DEFAULT("yyyy/MM/dd HH:mm:ss"),YYMMDD("yyyyMMdd");
private String value ;
private TimeFormat( String value){
this.value = value ;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}