Uses of Enum Class
com.bluebell.greenhouse.platform.enums.transaction.TransactionStatus
Packages that use TransactionStatus
Package
Description
Contains core enums used for
Transactions.Contains
Transaction-specific
non-entity models.Contains the data-access layer for
Transactions.Contains the service layer for
Transactions.Contains
Transaction-specific entity
specifications.-
Uses of TransactionStatus in com.bluebell.greenhouse.platform.enums.transaction
Subclasses with type arguments of type TransactionStatus in com.bluebell.greenhouse.platform.enums.transactionModifier and TypeClassDescriptionenumEnum representing the status that a transaction can be in.Classes in com.bluebell.greenhouse.platform.enums.transaction that implement interfaces with type arguments of type TransactionStatusModifier and TypeClassDescriptionenumEnum representing the status that a transaction can be in.Methods in com.bluebell.greenhouse.platform.enums.transaction that return TransactionStatusModifier and TypeMethodDescriptionstatic TransactionStatusReturns the enum constant of this class with the specified name.static TransactionStatus[]TransactionStatus.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of TransactionStatus in com.bluebell.greenhouse.platform.models.core.nonentities.transaction
Methods in com.bluebell.greenhouse.platform.models.core.nonentities.transaction that return TransactionStatusModifier and TypeMethodDescriptionTransactionFilter.transactionStatus()Returns the value of thetransactionStatusrecord component.Constructors in com.bluebell.greenhouse.platform.models.core.nonentities.transaction with parameters of type TransactionStatusModifierConstructorDescriptionTransactionFilter(Account account, LocalDateTime start, LocalDateTime end, TransactionType transactionType, List<TransactionType> transactionTypes, TransactionStatus transactionStatus, String query, Long positionId, Boolean positionAssigned) Creates an instance of aTransactionFilterrecord class. -
Uses of TransactionStatus in com.bluebell.greenhouse.radicle.repositories.transaction
Methods in com.bluebell.greenhouse.radicle.repositories.transaction with parameters of type TransactionStatusModifier and TypeMethodDescriptionTransactionRepository.findAllByTransactionStatusAndAccount(TransactionStatus transactionStatus, Account account) -
Uses of TransactionStatus in com.bluebell.greenhouse.radicle.services.transaction
Methods in com.bluebell.greenhouse.radicle.services.transaction with parameters of type TransactionStatusModifier and TypeMethodDescriptionTransactionService.findAllTransactionsByStatusForAccount(TransactionStatus transactionStatus, Account account) -
Uses of TransactionStatus in com.bluebell.greenhouse.radicle.specifications.transaction
Methods in com.bluebell.greenhouse.radicle.specifications.transaction with parameters of type TransactionStatusModifier and TypeMethodDescriptionstatic org.springframework.data.jpa.domain.Specification<Transaction> TransactionSpecifications.hasTransactionStatus(TransactionStatus transactionStatus) Filters byTransactionStatus.