public enum IsoDecimalStyle extends Enum<IsoDecimalStyle>
Determines how to print the decimal separator in ISO-format.
| Enum Constant and Description |
|---|
COMMA
Official recommendation of original ISO-8601-paper.
|
DOT
Widely used in any English speaking context, mandated by many ISO-derivates like XML-schema.
|
| Modifier and Type | Method and Description |
|---|---|
static IsoDecimalStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IsoDecimalStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IsoDecimalStyle COMMA
Official recommendation of original ISO-8601-paper.
public static final IsoDecimalStyle DOT
Widely used in any English speaking context, mandated by many ISO-derivates like XML-schema.
public static IsoDecimalStyle[] values()
for (IsoDecimalStyle c : IsoDecimalStyle.values()) System.out.println(c);
public static IsoDecimalStyle 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 © 2014–2017. All rights reserved.