◆ SettlementEntry()
org.turro.financials.treasury.settlement.SettlementEntry.SettlementEntry |
( |
String |
account, |
|
|
String |
name |
|
) |
| |
◆ compareTo()
int org.turro.financials.treasury.settlement.SettlementEntry.compareTo |
( |
SettlementEntry |
o | ) |
|
◆ getAccount()
String org.turro.financials.treasury.settlement.SettlementEntry.getAccount |
( |
| ) |
|
◆ getAmount()
double org.turro.financials.treasury.settlement.SettlementEntry.getAmount |
( |
| ) |
|
◆ getName()
String org.turro.financials.treasury.settlement.SettlementEntry.getName |
( |
| ) |
|
◆ isChecked()
boolean org.turro.financials.treasury.settlement.SettlementEntry.isChecked |
( |
| ) |
|
◆ isCreditor()
boolean org.turro.financials.treasury.settlement.SettlementEntry.isCreditor |
( |
| ) |
|
Definition at line 58 of file SettlementEntry.java.
59 return account.matches(SettlementSet.CREDITOR_EXP.replaceAll(
"\\%",
"[0-9]*"));
◆ isCreditorIRPF()
boolean org.turro.financials.treasury.settlement.SettlementEntry.isCreditorIRPF |
( |
| ) |
|
Definition at line 62 of file SettlementEntry.java.
63 return account.matches(SettlementSet.CREDITOR_EXP.replaceAll(
"\\%",
"1[1-9][0-9]*"));
◆ isCreditorVAT()
boolean org.turro.financials.treasury.settlement.SettlementEntry.isCreditorVAT |
( |
| ) |
|
Definition at line 66 of file SettlementEntry.java.
67 return account.matches(SettlementSet.CREDITOR_EXP.replaceAll(
"\\%",
"0[0-9]*"));
◆ isDebtor()
boolean org.turro.financials.treasury.settlement.SettlementEntry.isDebtor |
( |
| ) |
|
Definition at line 70 of file SettlementEntry.java.
71 return account.matches(SettlementSet.DEBTOR_EXP.replaceAll(
"\\%",
"[0-9]*")) ||
72 account.matches(SettlementSet.ON_ACCOUNT_EXP.replaceAll(
"\\%",
"[0-9]*"));
◆ setAmount()
void org.turro.financials.treasury.settlement.SettlementEntry.setAmount |
( |
double |
amount | ) |
|
◆ setChecked()
void org.turro.financials.treasury.settlement.SettlementEntry.setChecked |
( |
boolean |
checked | ) |
|
The documentation for this class was generated from the following file: