public enum EpochFractionFormat extends java.lang.Enum<EpochFractionFormat>
| Enum Constant and Description |
|---|
MICROSECONDS |
MILLISECONDS |
NANOSECONDS |
| Modifier and Type | Method and Description |
|---|---|
static EpochFractionFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EpochFractionFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EpochFractionFormat MILLISECONDS
public static final EpochFractionFormat MICROSECONDS
public static final EpochFractionFormat NANOSECONDS
public static EpochFractionFormat[] values()
for (EpochFractionFormat c : EpochFractionFormat.values()) System.out.println(c);
public static EpochFractionFormat 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 nullCopyright © 2015-2022 Real Logic Limited. All Rights Reserved.