Uses of Enum Class
com.v1rex.liftnexus.forklift.domain.OperationalStatus
Packages that use OperationalStatus
Package
Description
-
Uses of OperationalStatus in com.v1rex.liftnexus.forklift.controller
Methods in com.v1rex.liftnexus.forklift.controller with parameters of type OperationalStatusModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<org.springframework.data.domain.Page<ForkliftResponse>> ForkliftController.findWithCapacity(@Min(1L) Integer minCapacity, OperationalStatus status, org.springframework.data.domain.Pageable pageable) org.springframework.http.ResponseEntity<ForkliftResponse> ForkliftController.updateOperationalStatus(Long id, OperationalStatus status) -
Uses of OperationalStatus in com.v1rex.liftnexus.forklift.domain
Methods in com.v1rex.liftnexus.forklift.domain that return OperationalStatusModifier and TypeMethodDescriptionstatic OperationalStatusReturns the enum constant of this class with the specified name.static OperationalStatus[]OperationalStatus.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of OperationalStatus in com.v1rex.liftnexus.forklift.dto
Methods in com.v1rex.liftnexus.forklift.dto that return OperationalStatusModifier and TypeMethodDescriptionForkliftRequest.status()Returns the value of thestatusrecord component.ForkliftResponse.status()Returns the value of thestatusrecord component.Constructors in com.v1rex.liftnexus.forklift.dto with parameters of type OperationalStatusModifierConstructorDescriptionForkliftRequest(@NotBlank String fleetNumber, @NotNull Long forkliftTypeId, Long currentStorageBinId, OperationalStatus status, Double currentBatteryPercentage) Creates an instance of aForkliftRequestrecord class.ForkliftResponse(Long id, String fleetNumber, Long forkliftTypeId, String modelName, EquipmentType equipmentType, Integer maxCapacityKg, Long currentStorageBinId, OperationalStatus status, Double currentBatteryPercentage, List<Long> transportOrderIds) Creates an instance of aForkliftResponserecord class. -
Uses of OperationalStatus in com.v1rex.liftnexus.forklift.repository
Methods in com.v1rex.liftnexus.forklift.repository with parameters of type OperationalStatusModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<Forklift> ForkliftRepository.findByStatus(OperationalStatus status, org.springframework.data.domain.Pageable pageable) -
Uses of OperationalStatus in com.v1rex.liftnexus.forklift.service
Methods in com.v1rex.liftnexus.forklift.service with parameters of type OperationalStatusModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<ForkliftResponse> ForkliftService.findByStatus(OperationalStatus status, org.springframework.data.domain.Pageable pageable) Searches for forklifts by operational status.ForkliftService.updateOperationalStatus(Long forkliftId, OperationalStatus status) Transitions a forklift's operational status (e.g. fromOFFLINEtoACTIVE).