Uses of Enum Class
net.time4j.format.DisplayMode
Package
Description
Defines common interfaces for any format support of Time4J.
This package contains the expert-level format- and parse engine of Time4J.
Temporal formatters which access the platform specific resources.
-
Uses of DisplayMode in net.time4j.format
Modifier and TypeMethodDescriptionstatic DisplayMode
DisplayMode.ofStyle(int style)
Deprecated.Converts aDateFormat
-constant.static DisplayMode
Deprecated.Returns the enum constant of this class with the specified name.static DisplayMode[]
DisplayMode.values()
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptiondefault String
FormatPatternProvider.getDatePattern(DisplayMode mode, Locale locale)
Deprecated.default String
FormatPatternProvider.getDateTimePattern(DisplayMode dateMode, DisplayMode timeMode, Locale locale)
default String
FormatPatternProvider.getTimePattern(DisplayMode mode, Locale locale)
Deprecated.static String
CalendarText.patternForDate(DisplayMode mode, Locale locale)
Deprecated.static String
CalendarText.patternForMoment(DisplayMode dateMode, DisplayMode timeMode, Locale locale)
Deprecated.static String
CalendarText.patternForTime(DisplayMode mode, Locale locale)
Deprecated.static String
CalendarText.patternForTimestamp(DisplayMode dateMode, DisplayMode timeMode, Locale locale)
-
Uses of DisplayMode in net.time4j.format.expert
Modifier and TypeMethodDescriptionChronoFormatter.Builder.addTimezoneOffset(DisplayMode precision, boolean extended, List<String> zeroOffsets)
static ChronoFormatter<PlainDate>
ChronoFormatter.ofDateStyle(DisplayMode style, Locale locale)
Deprecated.static ChronoFormatter<CalendarDate>
ChronoFormatter.ofGenericCalendarStyle(DisplayMode style, Locale locale)
Deprecated.static ChronoFormatter<Moment>
ChronoFormatter.ofMomentStyle(DisplayMode dateStyle, DisplayMode timeStyle, Locale locale, TZID tzid)
static <T extends LocalizedPatternSupport>
ChronoFormatter<T>ChronoFormatter.ofStyle(DisplayMode style, Locale locale, Chronology<T> chronology)
Deprecated.static ChronoFormatter<PlainTimestamp>
ChronoFormatter.ofTimestampStyle(DisplayMode dateStyle, DisplayMode timeStyle, Locale locale)
static ChronoFormatter<PlainTime>
ChronoFormatter.ofTimeStyle(DisplayMode style, Locale locale)
Deprecated. -
Uses of DisplayMode in net.time4j.format.platform
Modifier and TypeMethodDescriptionstatic SimpleFormatter<PlainDate>
SimpleFormatter.ofDateStyle(DisplayMode style, Locale locale)
Deprecated.static SimpleFormatter<Moment>
SimpleFormatter.ofMomentStyle(DisplayMode dateStyle, DisplayMode timeStyle, Locale locale, TZID tzid)
static SimpleFormatter<PlainTimestamp>
SimpleFormatter.ofTimestampStyle(DisplayMode dateStyle, DisplayMode timeStyle, Locale locale)
static SimpleFormatter<PlainTime>
SimpleFormatter.ofTimeStyle(DisplayMode style, Locale locale)
Deprecated.
FormatPatternProvider.getDatePattern(FormatStyle, Locale)