public static enum GeneralizedTime.FractionDelimiter extends java.lang.Enum<GeneralizedTime.FractionDelimiter>
| Enum Constant and Description |
|---|
COMMA
Use a comma as fraction delimiter.
|
DOT
Use a dot as fraction delimiter.
|
| Modifier and Type | Method and Description |
|---|---|
static GeneralizedTime.FractionDelimiter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeneralizedTime.FractionDelimiter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeneralizedTime.FractionDelimiter DOT
public static final GeneralizedTime.FractionDelimiter COMMA
public static GeneralizedTime.FractionDelimiter[] values()
for (GeneralizedTime.FractionDelimiter c : GeneralizedTime.FractionDelimiter.values()) System.out.println(c);
public static GeneralizedTime.FractionDelimiter valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null