public static enum DataValueFormatter.LovFormat extends Enum<DataValueFormatter.LovFormat>
Enum Constant and Description |
---|
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 |
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullCopyright © 2015. All Rights Reserved.