Package com.basiscomponents.db.export
Class ReportDetails
- java.lang.Object
-
- com.basiscomponents.db.export.ReportDetails
-
public class ReportDetails extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
REPORT_LANGUAGE_DE_DE
static int
REPORT_LANGUAGE_EN_GB
static int
REPORT_LANGUAGE_EN_US
static int
REPORT_LANGUAGE_NL_NL
-
Constructor Summary
Constructors Constructor Description ReportDetails(int reportLanguage, String reportName, String tableName, String reportID)
Initializes the report detailsReportDetails(int reportLanguage, String reportName, String tableName, String reportID, Date queryTimestamp)
Initializes the report details
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDateMask()
Returns the date maskString
getFormattedProcessDate()
Returns the formatted process dateString
getFormattedQueryTimestamp()
Returns the formatted query time stampchar
getNumberDecimalSeparator()
Returns the number decimal separatorchar
getNumberGroupSeparator()
Returns the number group separatorDate
getProcessDate()
Returns the process dateDate
getQueryTimestamp()
Returns the query time stampString
getReportID()
Returns the report idString
getReportName()
Returns the report nameString
getTableName()
Returns the table nameString
getTimestampMask()
Returns the time stamp maskvoid
setQueryTimestamp(Date queryTimestamp)
Sets the query time stampvoid
setReportID(String reportID)
Sets the report idvoid
setReportName(String reportName)
Sets the report namevoid
setTableName(String tableName)
Sets the table name
-
-
-
Field Detail
-
REPORT_LANGUAGE_DE_DE
public static final int REPORT_LANGUAGE_DE_DE
- See Also:
- Constant Field Values
-
REPORT_LANGUAGE_EN_US
public static final int REPORT_LANGUAGE_EN_US
- See Also:
- Constant Field Values
-
REPORT_LANGUAGE_EN_GB
public static final int REPORT_LANGUAGE_EN_GB
- See Also:
- Constant Field Values
-
REPORT_LANGUAGE_NL_NL
public static final int REPORT_LANGUAGE_NL_NL
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ReportDetails
public ReportDetails(int reportLanguage, String reportName, String tableName, String reportID)
Initializes the report details- Parameters:
reportLanguage
- identifier for the report languagereportName
- the report's nametableName
- the table's name that is used in the reportreportID
- the report's id
-
ReportDetails
public ReportDetails(int reportLanguage, String reportName, String tableName, String reportID, Date queryTimestamp)
Initializes the report details- Parameters:
reportLanguage
- identifier for the report languagereportName
- the report's nametableName
- the table's name that is used in the reportreportID
- the report's idqueryTimestamp
- the query's execution time stamp
-
-
Method Detail
-
getReportName
public String getReportName()
Returns the report name- Returns:
- the report name
-
setReportName
public void setReportName(String reportName)
Sets the report name- Parameters:
reportName
- the report name
-
getTableName
public String getTableName()
Returns the table name- Returns:
- the table name
-
setTableName
public void setTableName(String tableName)
Sets the table name- Parameters:
tableName
- the table name
-
getReportID
public String getReportID()
Returns the report id- Returns:
- the report id
-
setReportID
public void setReportID(String reportID)
Sets the report id- Parameters:
reportID
- the report id
-
getQueryTimestamp
public Date getQueryTimestamp()
Returns the query time stamp- Returns:
- the query time stamp
-
setQueryTimestamp
public void setQueryTimestamp(Date queryTimestamp)
Sets the query time stamp- Parameters:
queryTimestamp
- the query time stamp
-
getProcessDate
public Date getProcessDate()
Returns the process date- Returns:
- the process date
-
getFormattedQueryTimestamp
public String getFormattedQueryTimestamp()
Returns the formatted query time stamp- Returns:
- the formatted query time stamp
-
getFormattedProcessDate
public String getFormattedProcessDate()
Returns the formatted process date- Returns:
- the formatted process date
-
getDateMask
public String getDateMask()
Returns the date mask- Returns:
- the date mask
-
getTimestampMask
public String getTimestampMask()
Returns the time stamp mask- Returns:
- the time stamp mask
-
getNumberGroupSeparator
public char getNumberGroupSeparator()
Returns the number group separator- Returns:
- the number group separator
-
getNumberDecimalSeparator
public char getNumberDecimalSeparator()
Returns the number decimal separator- Returns:
- the number decimal separator
-
-