Package de.businesscode.bcdui.toolbox
Enum Configuration.OPT_CLASSES
- java.lang.Object
-
- java.lang.Enum<Configuration.OPT_CLASSES>
-
- de.businesscode.bcdui.toolbox.Configuration.OPT_CLASSES
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Configuration.OPT_CLASSES>
- Enclosing class:
- Configuration
public static enum Configuration.OPT_CLASSES extends java.lang.Enum<Configuration.OPT_CLASSES>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BINDINGS
DATABASECOMPATIBILITY
DATASOURCEWRAPPER
SQLFROMSUBSELECT
SUBJECTSETTINGS2SQL
VFSRESOURCEPROVIDER
WRQCALC2SQL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Configuration.OPT_CLASSES
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Configuration.OPT_CLASSES[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SQLFROMSUBSELECT
public static final Configuration.OPT_CLASSES SQLFROMSUBSELECT
-
WRQCALC2SQL
public static final Configuration.OPT_CLASSES WRQCALC2SQL
-
DATASOURCEWRAPPER
public static final Configuration.OPT_CLASSES DATASOURCEWRAPPER
-
BINDINGS
public static final Configuration.OPT_CLASSES BINDINGS
-
SUBJECTSETTINGS2SQL
public static final Configuration.OPT_CLASSES SUBJECTSETTINGS2SQL
-
VFSRESOURCEPROVIDER
public static final Configuration.OPT_CLASSES VFSRESOURCEPROVIDER
-
DATABASECOMPATIBILITY
public static final Configuration.OPT_CLASSES DATABASECOMPATIBILITY
-
-
Method Detail
-
values
public static Configuration.OPT_CLASSES[] 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 (Configuration.OPT_CLASSES c : Configuration.OPT_CLASSES.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Configuration.OPT_CLASSES valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-