|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DataValueFormatter.LovFormat>
com.semarchy.mdm.runtime.data.DataValueFormatter.LovFormat
public static enum DataValueFormatter.LovFormat
Enum Constant Summary | |
---|---|
AS_DISPLAYED
Append CODE |
|
CODE
Use Code only |
|
CODE_AND_LABEL
Append Code and Label like CODE - LABEL |
|
LABEL
Use label only (unknown code will be displayed as <code> ) |
|
LABEL_AND_CODE
Append Label and Code like LABEL - CODE |
Method Summary | |
---|---|
static DataValueFormatter.LovFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DataValueFormatter.LovFormat[] |
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 DataValueFormatter.LovFormat CODE
public static final DataValueFormatter.LovFormat LABEL
public static final DataValueFormatter.LovFormat CODE_AND_LABEL
CODE - LABEL only (unknown code will be displayed as <code>
public static final DataValueFormatter.LovFormat LABEL_AND_CODE
LABEL - CODE only (unknown code will be displayed as <code>
public static final DataValueFormatter.LovFormat AS_DISPLAYED
CODE, LABEL, LABEL - CODE or CODE - LABEL as defined in design
Method Detail |
---|
public static DataValueFormatter.LovFormat[] values()
for (DataValueFormatter.LovFormat c : DataValueFormatter.LovFormat.values()) System.out.println(c);
public static DataValueFormatter.LovFormat valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |