import java.time.Month;
import java.time.format.TextStyle;
import java.util.Locale;

public class TestMonthFullStandalone {

	public static void main(String[] args) {
		System.out.println("Full StandAlone Locale English: " + Month.of(3).getDisplayName(TextStyle.FULL_STANDALONE, Locale.ENGLISH)); 
		System.out.println("Full Locale English: " + Month.of(3).getDisplayName(TextStyle.FULL, Locale.ENGLISH)); 
		System.out.println("Full StandAlone Locale CS: " + Month.of(3).getDisplayName(TextStyle.FULL_STANDALONE, new Locale("cs"))); 
		System.out.println("Full Locale CS: " + Month.of(3).getDisplayName(TextStyle.FULL, new Locale("cs"))); 
	}

}
