public static enum IValue.Format extends Enum<IValue.Format>
IValue.format(Format, int)| Enum Constant and Description |
|---|
ADAPTIVE_DECIMAL
If possible, use decimal representation with minimum possible decimal digits
|
DECIMAL
If possible, use decimal representation.
|
DEFAULT
Use all the MetaData information.
|
EXPONENTIAL
If possible, use exponential notation.
|
STRING
If possible, convert to String
|
| Modifier and Type | Method and Description |
|---|---|
static IValue.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IValue.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IValue.Format DEFAULT
public static final IValue.Format DECIMAL
public static final IValue.Format EXPONENTIAL
public static final IValue.Format STRING
public static final IValue.Format ADAPTIVE_DECIMAL
public static IValue.Format[] values()
for (IValue.Format c : IValue.Format.values()) System.out.println(c);
public static IValue.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 © 2023 European Spallation Source. All rights reserved.