public enum ThousandsSeparator extends Enum<ThousandsSeparator>
| Modifier and Type | Field and Description |
|---|---|
static ThousandsSeparator |
DEFAULT
The default setting when the
Format for ThousandsSeparator is null; |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isSeparated() |
static ThousandsSeparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ThousandsSeparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThousandsSeparator NONE
public static final ThousandsSeparator ON
public static final ThousandsSeparator DEFAULT
Format for ThousandsSeparator is null;public static ThousandsSeparator[] values()
for (ThousandsSeparator c : ThousandsSeparator.values()) System.out.println(c);
public static ThousandsSeparator 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 nullpublic boolean isSeparated()
Copyright © 2014–2019 Smartsheet. All rights reserved.