Uses of Class
org.salespointframework.accountancy.AccountancyEntry
Package
Description
Accountancy subsystem with services for accounting and bookkeeping.
-
Uses of AccountancyEntry in org.salespointframework.accountancy
Modifier and TypeClassDescriptionclass
AOrderPaymentEntry
is used to store information of payments of orders.Modifier and TypeMethodDescription<T extends AccountancyEntry>
TAccountancy.add
(T entry) Adds a newAccountancyEntry
to thisAccountancy
.<T extends AccountancyEntry>
Streamable<T> Returns allAccountancyEntry
s of the given type for the givenInterval
.<T extends AccountancyEntry>
Map<Interval, Streamable<T>> Accountancy.find
(Interval interval, TemporalAmount duration, Class<T> type) Returns allAccountancyEntry
s of the given type within the given interval, grouped by sub-intervals of the given duration.<T extends AccountancyEntry>
Streamable<T> Returns allAccountancyEntry
instances of the given types, and the given types only.<T extends AccountancyEntry>
Optional<T> Accountancy.get
(AccountancyEntry.AccountancyEntryIdentifier identifier, Class<T> type) Returns theAccountancyEntry
identified by the givenAccountancyEntry.AccountancyEntryIdentifier
of the given type, if it exists.Modifier and TypeMethodDescriptionAccountancy.find
(Interval interval, TemporalAmount duration) Returns allAccountancyEntry
s within the given interval, grouped by sub-intervals of the given duration.Accountancy.findAll()
Returns allAccountancyEntry
s previously added to the accountancy.Accountancy.get
(AccountancyEntry.AccountancyEntryIdentifier identifier) Returns theAccountancyEntry
identified by the givenAccountancyEntry.AccountancyEntryIdentifier
, if it exists.