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 intREPORT_LANGUAGE_DE_DEstatic intREPORT_LANGUAGE_EN_GBstatic intREPORT_LANGUAGE_EN_USstatic intREPORT_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 StringgetDateMask()Returns the date maskStringgetFormattedProcessDate()Returns the formatted process dateStringgetFormattedQueryTimestamp()Returns the formatted query time stampchargetNumberDecimalSeparator()Returns the number decimal separatorchargetNumberGroupSeparator()Returns the number group separatorDategetProcessDate()Returns the process dateDategetQueryTimestamp()Returns the query time stampStringgetReportID()Returns the report idStringgetReportName()Returns the report nameStringgetTableName()Returns the table nameStringgetTimestampMask()Returns the time stamp maskvoidsetQueryTimestamp(Date queryTimestamp)Sets the query time stampvoidsetReportID(String reportID)Sets the report idvoidsetReportName(String reportName)Sets the report namevoidsetTableName(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
-
-