- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 30 of file ReportRow.java.
◆ ReportRow() [1/2]
org.turro.financials.report.ReportRow.ReportRow |
( |
int |
order, |
|
|
String |
name, |
|
|
boolean |
sum, |
|
|
String |
group |
|
) |
| |
◆ ReportRow() [2/2]
org.turro.financials.report.ReportRow.ReportRow |
( |
int |
order, |
|
|
String |
name, |
|
|
String |
regexp[], |
|
|
ReportSumType |
sumType, |
|
|
boolean |
negate |
|
) |
| |
◆ check()
boolean org.turro.financials.report.ReportRow.check |
( |
RegisterEntry |
e | ) |
|
Definition at line 85 of file ReportRow.java.
86 if(
isSum())
return true;
87 for(String rg : regexp) {
88 if(e.getAccount().getId().matches(rg)) {
◆ compareTo()
int org.turro.financials.report.ReportRow.compareTo |
( |
ReportRow |
o | ) |
|
Definition at line 96 of file ReportRow.java.
97 int result = CompareUtil.compare(order, o.getOrder());
99 result = CompareUtil.compare(name, o.getName());
◆ getGroup()
String org.turro.financials.report.ReportRow.getGroup |
( |
| ) |
|
Definition at line 81 of file ReportRow.java.
82 return Strings.isBlank(group) ?
"default" : group;
◆ getName()
String org.turro.financials.report.ReportRow.getName |
( |
| ) |
|
◆ getOrder()
int org.turro.financials.report.ReportRow.getOrder |
( |
| ) |
|
◆ getRegexp()
String [] org.turro.financials.report.ReportRow.getRegexp |
( |
| ) |
|
◆ getSumType()
ReportSumType org.turro.financials.report.ReportRow.getSumType |
( |
| ) |
|
◆ hashCode()
int org.turro.financials.report.ReportRow.hashCode |
( |
| ) |
|
Definition at line 105 of file ReportRow.java.
106 return Objects.hash(order, name, regexp, sumType);
◆ isNegate()
boolean org.turro.financials.report.ReportRow.isNegate |
( |
| ) |
|
◆ isSum()
boolean org.turro.financials.report.ReportRow.isSum |
( |
| ) |
|
The documentation for this class was generated from the following file: