Here you can find the source of getFullFormatter()
private static DateTimeFormatter getFullFormatter()
//package com.java2s; //License from project: Open Source License import java.time.format.DateTimeFormatter; import java.util.Locale; public class Main { private static final String FULL_PATTERN = "EEEE dd/MM/yyyy"; private static DateTimeFormatter getFullFormatter() { return DateTimeFormatter.ofPattern(FULL_PATTERN).withLocale(Locale.FRANCE); }//w w w . ja va2 s . c o m }