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