Skip to content

Latest commit

 

History

7 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

DateOnlyParser

String to Date parser. Very strict, very fast and Java 1.1 compatible

Time is not supported

	 Date Date = new DateOnlyParser("yyyy-mm-dd")
	 	.parseExact("2022-11-22");

If you are using Java 1.8+ you should use LocalDate instead (unless you need the extra speed)

	DateTimeFormatter formatter = DateTimeFormatter.ofPattern("y M d");
	LocalDate date = LocalDate.parse("2022 11 19", formatter);

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages