* @param style the style of the text required, not null
* @param locale the locale to use, not null
* @return the text value of the era, not null
*/
default String getDisplayName(TextStyle style, Locale locale) {
return new DateTimeFormatterBuilder().appendText(ERA, style).toFormatter(locale).format(this);
}