|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ITimestamp.Format>
org.csstudio.data.values.ITimestamp.Format
public static enum ITimestamp.Format
Format specifier.
ITimestamp#format()
Enum Constant Summary | |
---|---|
Date
Format to "YYYY/MM/DD". |
|
DateTime
Format to "YYYY/MM/DD HH:MM". |
|
DateTimeSeconds
Format to "YYYY/MM/DD HH:MM:SS". |
|
Full
Format to "YYYY/MM/DD HH:MM:SS.000000000". |
Method Summary | |
---|---|
static ITimestamp.Format |
fromOrdinal(int ordinal)
Obtain ITimestamp.Format for given ordinal. |
static ITimestamp.Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ITimestamp.Format[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ITimestamp.Format Date
public static final ITimestamp.Format DateTime
public static final ITimestamp.Format DateTimeSeconds
public static final ITimestamp.Format Full
Method Detail |
---|
public static ITimestamp.Format[] values()
for (ITimestamp.Format c : ITimestamp.Format.values()) System.out.println(c);
public static ITimestamp.Format 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 name
java.lang.NullPointerException
- if the argument is nullpublic static final ITimestamp.Format fromOrdinal(int ordinal)
ITimestamp.Format
for given ordinal.
ordinal
- Should be one of the Format.XX.ordinal() codes.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |