Skip to content

Commit

Permalink
✨ feat: 카테고리 enum 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
strongmhk committed Jul 4, 2024
1 parent 9e979bd commit 7e14b39
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/main/java/com/umc/dream/domain/enums/DreamCategory.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
@Getter
@Slf4j
public enum DreamCategory {
NORMAL("일반"),
SOSO("그냥그래요"),
GOOD("온수가 빨라요");
NORMAL("일상"),
NIGHTMARE("악몽"),
REPEATED_DREAM("반복되는 꿈"),
LUCID_DREAM("자각몽"),
PRECOGNITIVE_DREAM("예지몽");

@JsonValue
private final String value;
Expand All @@ -26,7 +28,7 @@ public static DreamCategory from(String param) {
return dreamCategory;
}
}
log.debug("HotWaterStatus.from() exception occur param: {}", param);
log.debug("dreamCategory.from() exception occur param: {}", param);
return null;
}
}

0 comments on commit 7e14b39

Please sign in to comment.