Package com.smartgwt.client.types
Enum TimeFormatter
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<TimeFormatter>
,Constable
Deprecated.
String designating a standard time formatter for displaying the times associated with 
 dates strings.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDeprecated.String will display with seconds in 24 hour time:[H]H:MM:SS
.Deprecated.String will display with seconds, with a 2 digit hour in 24 hour format: 
HH:MM:SS

 Examples:15:25:15
,03:16:45
Deprecated.String will display with seconds, with a 2 digit hour and am/pm indicator: 
HH:MM:SS am|pm

 Example:03:25:15 pm
Deprecated.String will have no seconds and be in 24 hour format:[H]H:MM

 Example:15:25
Deprecated.String will have no seconds and will display with a 2 digit hour in 24 hour clock format:
HH:MM

 Examples:15:25
,03:16
Deprecated.String will have no seconds and will display a 2 digit hour, in 12 hour clock format:
HH:MM am|pm

 Exmaple:03:25 pm
Deprecated.String will have no seconds and be in 12 hour format:[H]H:MM am|pm

 Example:3:25 pm
Deprecated.String will display with seconds and am/pm indicator:[H]H:MM:SS am|pm
. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
Deprecated.static TimeFormatter
Deprecated.Returns the enum constant of this type with the specified name.static TimeFormatter[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TOTIME
Deprecated.String will display with seconds and am/pm indicator:[H]H:MM:SS am|pm
.

 Example:3:25:15 pm
-
TO24HOURTIME
Deprecated.String will display with seconds in 24 hour time:[H]H:MM:SS
.

 Example:15:25:15
-
TOPADDEDTIME
Deprecated.String will display with seconds, with a 2 digit hour and am/pm indicator: 
HH:MM:SS am|pm

 Example:03:25:15 pm
-
TOPADDED24HOURTIME
Deprecated.String will display with seconds, with a 2 digit hour in 24 hour format: 
HH:MM:SS

 Examples:15:25:15
,03:16:45
-
TOSHORTTIME
Deprecated.String will have no seconds and be in 12 hour format:[H]H:MM am|pm

 Example:3:25 pm
-
TOSHORT24HOURTIME
Deprecated.String will have no seconds and be in 24 hour format:[H]H:MM

 Example:15:25
-
TOSHORTPADDEDTIME
Deprecated.String will have no seconds and will display a 2 digit hour, in 12 hour clock format:
HH:MM am|pm

 Exmaple:03:25 pm
-
TOSHORTPADDED24HOURTIME
Deprecated.String will have no seconds and will display with a 2 digit hour in 24 hour clock format:
HH:MM

 Examples:15:25
,03:16
-
-
Method Details
-
values
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
Deprecated.
-
DateDisplayFormatter
instead