|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Configuration.ConfigurationKey>
be.six.reports.util.Configuration.ConfigurationKey
public static enum Configuration.ConfigurationKey
Defines a configuration key.
Enum Constant Summary | |
---|---|
CSV_filename_timstamp_format
The SimpleDateFormat string used in the filename of the csv-export. |
|
CSV_separator
The CSV field separator |
|
database_connectionstring
The JDBC connection string, e.g. jdbc:oracle:thin:@163.194.21.35:1521:INSTANCE |
|
database_driver
The JDBC database driver, e.g. |
|
database_login
The login for the database user |
|
database_password
The password for the database user |
|
date_format
The SimpleDateFormat string used in the csv-export. |
|
export_folder
The folder where the CSV exports are saved, , e.g. |
|
list_queries
Queries to populate comboboxes with. |
|
number_format
The NumberFormat string used in the csv-export. |
|
queries_folder
The folder with SQL queries, e.g. |
Method Summary | |
---|---|
static Configuration.ConfigurationKey |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Configuration.ConfigurationKey[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 Configuration.ConfigurationKey queries_folder
public static final Configuration.ConfigurationKey export_folder
public static final Configuration.ConfigurationKey database_driver
public static final Configuration.ConfigurationKey database_connectionstring
public static final Configuration.ConfigurationKey database_login
public static final Configuration.ConfigurationKey database_password
public static final Configuration.ConfigurationKey list_queries
name: SQL Query [| othername : other SQL Query]
users: select id,name from users | categories: select id,desc from categories
public static final Configuration.ConfigurationKey date_format
yyyy-MM-dd hh:mm:ss
public static final Configuration.ConfigurationKey number_format
0.##########
public static final Configuration.ConfigurationKey CSV_separator
public static final Configuration.ConfigurationKey CSV_filename_timstamp_format
yyyy-MM-dd hh-mm-ss
Method Detail |
---|
public static Configuration.ConfigurationKey[] values()
for (Configuration.ConfigurationKey c : Configuration.ConfigurationKey.values()) System.out.println(c);
public static Configuration.ConfigurationKey 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |