Enum Class ListSourceType
- All Implemented Interfaces:
Serializable,Comparable<ListSourceType>,Constable
Represents how to populate the entry list in a combo box or list box control.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNoneEvaluated against the database front-end document or database connection defined by the form which the control belongs to.Evaluated against the database front-end document or database connection defined by the form which the control belongs to.Evaluated against the database front-end document or database connection defined by the form which the control belongs to.Evaluated against the database front-end document or database connection defined by the form which the control belongs to.Evaluated against the database front-end document or database connection defined by the form which the control belongs to.Entry list populated by values specified by the form. -
Method Summary
Modifier and TypeMethodDescriptionstatic ListSourceTypeReturns the enum constant of this class with the specified name.static ListSourceType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TABLE
Evaluated against the database front-end document or database connection defined by the form which the control belongs to. -
QUERY
Evaluated against the database front-end document or database connection defined by the form which the control belongs to. -
SQL
Evaluated against the database front-end document or database connection defined by the form which the control belongs to. -
SQL_PASS_THROUGH
Evaluated against the database front-end document or database connection defined by the form which the control belongs to. -
VALUE_LIST
Entry list populated by values specified by the form. -
TABLE_FIELDS
Evaluated against the database front-end document or database connection defined by the form which the control belongs to. -
NONE
None
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-