Uses of Class
org.salespointframework.accountancy.AccountancyEntry
Packages that use AccountancyEntry
Package
Description
Accountancy subsystem with services for accounting and bookkeeping.
-
Uses of AccountancyEntry in org.salespointframework.accountancy
Subclasses of AccountancyEntry in org.salespointframework.accountancyModifier and TypeClassDescriptionclass
AOrderPaymentEntry
is used to store information of payments of orders.Methods in org.salespointframework.accountancy with type parameters of type AccountancyEntryModifier 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.Methods in org.salespointframework.accountancy that return types with arguments of type AccountancyEntryModifier 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.