Enum Config
- java.lang.Object
-
- java.lang.Enum<Config>
-
- org.iqtig.pseudonymisierung.config.Config
-
- All Implemented Interfaces:
Serializable
,Comparable<Config>
public enum Config extends Enum<Config>
Enthält Konstanten für dieProperties
aus der Konfigurationsdatei.- Author:
- Michael Buckendahl
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description static org.apache.commons.csv.CSVFormat
CSV_FORMAT
static String
DATE_FORMAT
dd.MM.yyyy
static int
NUMBER_OF_SPLIT
static String
SEPARATOR
static Charset
UTF8_CHAR_SET
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getConsolenParam()
String
getPropertyKey()
Der Eigenschafts-SchlüsselString
toString()
Der Eigenschafts-Schlüsselstatic Config
valueOf(String name)
Returns the enum constant of this type with the specified name.static Config[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CERTIFICATE_PASSWORD
public static final Config CERTIFICATE_PASSWORD
-
ROW_START
public static final Config ROW_START
-
COLUMN_OUTPUT
@Deprecated public static final Config COLUMN_OUTPUT
Deprecated.
-
COLUMN_INPUT
@Deprecated public static final Config COLUMN_INPUT
Deprecated.
-
COLUMN_OUTPUT_IKBS
public static final Config COLUMN_OUTPUT_IKBS
-
COLUMN_INPUT_IKBS
public static final Config COLUMN_INPUT_IKBS
-
COLUMN_OUTPUT_STO
public static final Config COLUMN_OUTPUT_STO
-
COLUMN_INPUT_STO
public static final Config COLUMN_INPUT_STO
-
COLUMN_METHOD
public static final Config COLUMN_METHOD
-
METHOD
public static final Config METHOD
-
CERTIFICATE_DATACOLLECTIONPOINT
public static final Config CERTIFICATE_DATACOLLECTIONPOINT
-
CERTIFICATE_STATE_CODE
public static final Config CERTIFICATE_STATE_CODE
-
REGISTRATION_DIR
public static final Config REGISTRATION_DIR
-
CERTIFICATE_FILE
public static final Config CERTIFICATE_FILE
-
CERTIFICATE_STARTDATE
public static final Config CERTIFICATE_STARTDATE
-
CERTIFICATE_ENDDATE
public static final Config CERTIFICATE_ENDDATE
-
PSEU_CSV_INPUT_FILE
public static final Config PSEU_CSV_INPUT_FILE
-
PSEU_CSV_OUTPUT_FILE
public static final Config PSEU_CSV_OUTPUT_FILE
-
CERTIFICATE_DIR
public static final Config CERTIFICATE_DIR
-
ADD_DATA_CSV_INPUT_FILE
public static final Config ADD_DATA_CSV_INPUT_FILE
-
-
Field Detail
-
UTF8_CHAR_SET
public static final Charset UTF8_CHAR_SET
-
CSV_FORMAT
public static final org.apache.commons.csv.CSVFormat CSV_FORMAT
-
DATE_FORMAT
public static final String DATE_FORMAT
dd.MM.yyyy
- See Also:
SimpleDateFormat
, Constant Field Values
-
NUMBER_OF_SPLIT
public static final int NUMBER_OF_SPLIT
- See Also:
- Constant Field Values
-
SEPARATOR
public static final String SEPARATOR
- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static Config[] 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 (Config c : Config.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Config 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 nameNullPointerException
- if the argument is null
-
toString
public String toString()
Der Eigenschafts-Schlüssel
-
-