Uses of Enum Class
com.iu.javadatastructureslab.model.Order.OrderStatus
Packages that use Order.OrderStatus
Package
Description
Domain models used by the demo controllers and services.
-
Uses of Order.OrderStatus in com.iu.javadatastructureslab.model
Methods in com.iu.javadatastructureslab.model that return Order.OrderStatusModifier and TypeMethodDescriptionOrder.getStatus()Returns the current order status.static Order.OrderStatusReturns the enum constant of this class with the specified name.static Order.OrderStatus[]Order.OrderStatus.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.iu.javadatastructureslab.model with parameters of type Order.OrderStatusModifier and TypeMethodDescriptionvoidOrder.setStatus(Order.OrderStatus status) Updates the order status.Constructors in com.iu.javadatastructureslab.model with parameters of type Order.OrderStatusModifierConstructorDescriptionOrder(int orderId, String customerName, String productName, Order.PriorityOrder priority, Order.OrderStatus status, LocalDateTime orderDate, double totalAmount) Creates an order instance.