public static enum UIDurationProperty.Format extends Enum<UIDurationProperty.Format>
| Enum Constant and Description |
|---|
ISO
Value will be parsed and serialized as ISO
|
NUMBER_MSEC
Value will be parsed and serialized as a number of milliseconds
|
NUMBER_SECONDS
Value will be parsed and serialized as a number of seconds
|
| Modifier and Type | Method and Description |
|---|---|
static UIDurationProperty.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UIDurationProperty.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UIDurationProperty.Format ISO
public static final UIDurationProperty.Format NUMBER_SECONDS
public static final UIDurationProperty.Format NUMBER_MSEC
public static UIDurationProperty.Format[] values()
for (UIDurationProperty.Format c : UIDurationProperty.Format.values()) System.out.println(c);
public static UIDurationProperty.Format valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.