From 38a7ec293dcc2c7c8f26c605242ac4adbde860b8 Mon Sep 17 00:00:00 2001 From: Demagalawrence Date: Wed, 24 Sep 2025 10:19:37 +0300 Subject: [PATCH] Add Javadoc comments for ProjectStatus enum --- .../java/com/greencode/entity/Project.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/main/java/com/greencode/entity/Project.java b/src/main/java/com/greencode/entity/Project.java index 66cabef..e81bf33 100644 --- a/src/main/java/com/greencode/entity/Project.java +++ b/src/main/java/com/greencode/entity/Project.java @@ -203,12 +203,30 @@ public enum ProjectCategory { RESEARCH, OTHER } + /** + * represents the current status of the program + */ public enum ProjectStatus { + /** + * project is planned but the work has not yet started + */ PLANNED, + /** + * project is currently in progress + */ IN_PROGRESS, + /** + * project is temporarily on hold + */ ON_HOLD, + /** + * project has been completed successful + */ COMPLETED, + /** + * project has been cancelled and will not run + */ CANCELLED } }