public enum ParametersDialogShowMode extends java.lang.Enum<ParametersDialogShowMode>
Enum Constant and Description |
---|
IF_REQUIRED
Show dialog to input the report parameters in the following cases:
Report has input parameters
Report has several templates
Report has one template with alterable output type
|
NO
Not to show dialog to input the report parameters
|
YES
Show dialog to input the report parameters
|
Modifier and Type | Method and Description |
---|---|
static ParametersDialogShowMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ParametersDialogShowMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParametersDialogShowMode YES
public static final ParametersDialogShowMode NO
public static final ParametersDialogShowMode IF_REQUIRED
public static ParametersDialogShowMode[] values()
for (ParametersDialogShowMode c : ParametersDialogShowMode.values()) System.out.println(c);
public static ParametersDialogShowMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null