public enum DateOrder extends Enum<DateOrder> implements IServiceDataObject, Serializable
Enum Constant and Description |
---|
DDMMYY
Day, Month, Year
|
DDYYMM
Day, Year, Month
|
MMDDYY
Month, Day, Year
|
MMYYDD
Month, Year, Day
|
YYDDMM
Year, Day, Month
|
YYMMDD
Year, Month, Day
|
Modifier and Type | Method and Description |
---|---|
static DateOrder |
fromString(String s)
Returns the enum constant with the specified name.
|
void |
load(com.opentext.api.LLValue value)
Deserialize an ServiceDataObject from an LLValue that is received from Livelink.
|
com.opentext.api.LLValue |
toLLValue()
Serialize an SDO object to an LLValue that can be sent to Livelink.
|
static DateOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DateOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateOrder DDMMYY
public static final DateOrder DDYYMM
public static final DateOrder MMDDYY
public static final DateOrder MMYYDD
public static final DateOrder YYDDMM
public static final DateOrder YYMMDD
public static DateOrder[] values()
for (DateOrder c : DateOrder.values()) System.out.println(c);
public static DateOrder 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 void load(com.opentext.api.LLValue value)
IServiceDataObject
load
in interface IServiceDataObject
value
- the LLValue containing the data to be loadedpublic com.opentext.api.LLValue toLLValue()
IServiceDataObject
toLLValue
in interface IServiceDataObject
© Copyright 2017 OpenText Corp. All Rights Reserved.