|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ValueItemType>
com.smartgwt.client.types.ValueItemType
public enum ValueItemType
Enum used within the FilterBuilder class to indicate the role of a particular
value-field form item within a filter clause.
| Enum Constant Summary | |
|---|---|
END
Indicates this item will generate the higher-bound value (or "end") when generating criteria with valueType "valueRange". |
|
NAME
This is the single form item that will populated the generated value
for valueType of "fieldName". |
|
START
Indicates this item will generate the lower-bound value (or "start") when generating criteria with valueType "valueRange". |
|
VALUE
This is the single form item that will populate the generated value
for this clause. |
|
| Method Summary | |
|---|---|
String |
getValue()
|
static ValueItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ValueItemType[] |
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 ValueItemType VALUE
value
for this clause. This applies for operators with valueType of "fieldType" or "custom".
public static final ValueItemType NAME
value
for valueType of "fieldName".
public static final ValueItemType START
"valueRange".
public static final ValueItemType END
"valueRange".
| Method Detail |
|---|
public static ValueItemType[] values()
for (ValueItemType c : ValueItemType.values()) System.out.println(c);
public static ValueItemType 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 nullpublic String getValue()
getValue in interface ValueEnum
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||