|
Compiere 3.1 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ComponentVO.ComponentType>
org.compiere.vos.ComponentVO.ComponentType
public static enum ComponentVO.ComponentType
Indicates how a particular component should be rendered in the UI. Possible values are SEARCH, TABLE_SINGLE, TABLE_MULTI, and TABLE_NOSELECT.
| Enum Constant Summary | |
|---|---|
SEARCH
A component that renders its FieldVOs as a list of input fields that the users can use to enter search criteria. |
|
TABLE_MULTI
A component that renders search results in a tabular layout, and allows multiple rows to be selected at a time. |
|
TABLE_NOSELECT
A component that renders search results in a tabular layout, and does not allow any row to be selected. |
|
TABLE_SINGLE
A component that renders search results in a tabular layout, and allows only a single row to be selected at a time. |
|
| Method Summary | |
|---|---|
static ComponentVO.ComponentType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ComponentVO.ComponentType[] |
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 ComponentVO.ComponentType SEARCH
public static final ComponentVO.ComponentType TABLE_SINGLE
public static final ComponentVO.ComponentType TABLE_MULTI
public static final ComponentVO.ComponentType TABLE_NOSELECT
| Method Detail |
|---|
public static ComponentVO.ComponentType[] values()
for (ComponentVO.ComponentType c : ComponentVO.ComponentType.values()) System.out.println(c);
public static ComponentVO.ComponentType 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
|
Compiere 3.1 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||