Skip to content

Commit

Permalink
[#58] feat: 키워드 재정의
Browse files Browse the repository at this point in the history
  • Loading branch information
NaMinhyeok committed Feb 6, 2025
1 parent 5374e48 commit 78fb3f9
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 7 deletions.
49 changes: 49 additions & 0 deletions docs/가치관 유형.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# 가치관 유형

## 기존 유형
슈왈츠의 보편적 가치 이론에 따라 10가지 유형을 정의하였습니다.
1. 자기주도
2. 자극
3. 쾌락
4. 성취
5. 권력
6. 안전
7. 순응
8. 전통
9. 박애
10. 보편주의

## 변경된 유형
1. 자기주도
2. 모험
3. 안전
4. 안정
5. 성공
6. 박애
7. 보편주의

모험 : 쾌락 + 자극
안정 : 전통 + 순응
성공 : 권력 + 성취

### 해당 유형에 대한 ENUM
```java
public enum Keyword {
SELF_DIRECTION("자기주도"),
ADVENTURE("모험"),
SECURITY("안전"),
STABILITY("안정"),
SUCCESS("성공"),
BENEVOLENCE("박애"),
UNIVERSALISM("보편주의");

private final String description;

Keyword(String description) {
this.description = description;
}
}
```

## 변경 사유
기존의 슈왈츠 보편적 가치이론의 10가지 키워드를 가지고 진행하려고 하였으나 개발 및 디자인 측면에서 어려움이 있어서 다음과 같이 변경하였습니다.
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,12 @@

public enum Keyword {
SELF_DIRECTION("자기주도"),
STIMULATION("자극"),
HEDONISM("쾌락"),
ACHIEVEMENT("성취"),
POWER("권력"),
ADVENTURE("모험"),
SECURITY("안전"),
CONFORMITY("순응"),
TRADITION("전통"),
STABILITY("안정"),
SUCCESS("성공"),
BENEVOLENCE("박애"),
UNIVERSALISM("보편");
UNIVERSALISM("보편주의");

private final String description;

Expand Down

0 comments on commit 78fb3f9

Please sign in to comment.