@Beta public enum UifDisplayHintType extends Enum<UifDisplayHintType>
UifDisplayHint.| Enum Constant and Description |
|---|
DROPDOWN
If a values finder is present for the field, generate as a Drop-down list.
|
EXCLUDE
Tells the defaulter to exclude this field and not generate an attribute definition at all.
|
HIDDEN
Tells the defaulter to hide this field and not generate an input field for it.
|
NO_INQUIRY
Don't include this attribute in the inquiry page.
|
NO_LOOKUP_CRITERIA
Don't include this attribute in the lookup criteria.
|
NO_LOOKUP_RESULT
Don't include this attribute in the lookup results.
|
NONE
Does nothing.
|
RADIO
If a values finder is present for the field, generate as a set of radio buttons.
|
SECTION
Indicates that this hint tells that the attribute should be put in a specific section.
|
| Modifier and Type | Method and Description |
|---|---|
static UifDisplayHintType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UifDisplayHintType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UifDisplayHintType NONE
public static final UifDisplayHintType HIDDEN
public static final UifDisplayHintType EXCLUDE
public static final UifDisplayHintType DROPDOWN
public static final UifDisplayHintType RADIO
public static final UifDisplayHintType SECTION
public static final UifDisplayHintType NO_INQUIRY
public static final UifDisplayHintType NO_LOOKUP_CRITERIA
public static final UifDisplayHintType NO_LOOKUP_RESULT
public static UifDisplayHintType[] values()
for (UifDisplayHintType c : UifDisplayHintType.values()) System.out.println(c);
public static UifDisplayHintType 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 © 2005–2016 The Kuali Foundation. All rights reserved.