Most visited

Recently visited

Added in API level 24

TimeZoneFormat.TimeType

public static final enum TimeZoneFormat.TimeType
extends Enum<TimeZoneFormat.TimeType>

java.lang.Object
   ↳ java.lang.Enum<android.icu.text.TimeZoneFormat.TimeType>
     ↳ android.icu.text.TimeZoneFormat.TimeType


Time type enum used for receiving time type (standard time, daylight time or unknown) in TimeZoneFormat APIs.

Summary

Enum values

TimeZoneFormat.TimeType  DAYLIGHT

Daylight saving time  

TimeZoneFormat.TimeType  STANDARD

Standard time  

TimeZoneFormat.TimeType  UNKNOWN

Unknown  

Public methods

static TimeZoneFormat.TimeType valueOf(String name)
static final TimeType[] values()

Inherited methods

From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum values

DAYLIGHT

Added in API level 24
TimeZoneFormat.TimeType DAYLIGHT

Daylight saving time

STANDARD

Added in API level 24
TimeZoneFormat.TimeType STANDARD

Standard time

UNKNOWN

Added in API level 24
TimeZoneFormat.TimeType UNKNOWN

Unknown

Public methods

valueOf

Added in API level 24
TimeZoneFormat.TimeType valueOf (String name)

Parameters
name String
Returns
TimeZoneFormat.TimeType

values

Added in API level 24
TimeType[] values ()

Returns
TimeType[]

Hooray!