org.apertereports.common
Enum ARConstants.InputTypes
java.lang.Object
java.lang.Enum<ARConstants.InputTypes>
org.apertereports.common.ARConstants.InputTypes
- All Implemented Interfaces:
- Serializable, Comparable<ARConstants.InputTypes>
- Enclosing interface:
- ARConstants
public static enum ARConstants.InputTypes
- extends Enum<ARConstants.InputTypes>
Represents report parameter input types. This is transformed into an
adequate Vaadin input widget.
TEXT
public static final ARConstants.InputTypes TEXT
DATE
public static final ARConstants.InputTypes DATE
TEXTAREA
public static final ARConstants.InputTypes TEXTAREA
SELECT
public static final ARConstants.InputTypes SELECT
MULTISELECT
public static final ARConstants.InputTypes MULTISELECT
RADIOBUTTONS
public static final ARConstants.InputTypes RADIOBUTTONS
CHECKBOXES
public static final ARConstants.InputTypes CHECKBOXES
CHECKBOX
public static final ARConstants.InputTypes CHECKBOX
SPECIAL_CONTROL
public static final ARConstants.InputTypes SPECIAL_CONTROL
FILTER
public static final ARConstants.InputTypes FILTER
FILTERED_SELECT
public static final ARConstants.InputTypes FILTERED_SELECT
values
public static ARConstants.InputTypes[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ARConstants.InputTypes c : ARConstants.InputTypes.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ARConstants.InputTypes valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (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 type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2011-2013. All Rights Reserved.