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 TypeClassDescriptionclassAOrderPaymentEntryis 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 newAccountancyEntryto thisAccountancy.<T extends AccountancyEntry>
Streamable<T> Returns allAccountancyEntrys of the given type for the givenInterval.<T extends AccountancyEntry>
Map<Interval, Streamable<T>> Accountancy.find(Interval interval, TemporalAmount duration, Class<T> type) Returns allAccountancyEntrys of the given type within the given interval, grouped by sub-intervals of the given duration.<T extends AccountancyEntry>
Streamable<T> Returns allAccountancyEntryinstances of the given types, and the given types only.<T extends AccountancyEntry>
Optional<T> Accountancy.get(AccountancyEntry.AccountancyEntryIdentifier identifier, Class<T> type) Returns theAccountancyEntryidentified by the givenAccountancyEntry.AccountancyEntryIdentifierof 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 allAccountancyEntrys within the given interval, grouped by sub-intervals of the given duration.Accountancy.findAll()Returns allAccountancyEntrys previously added to the accountancy.Accountancy.get(AccountancyEntry.AccountancyEntryIdentifier identifier) Returns theAccountancyEntryidentified by the givenAccountancyEntry.AccountancyEntryIdentifier, if it exists.