-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat(#58): 키워드 재정의 #62
The head ref may contain hidden characters: "feature/#58-feat-\uB300\uBD84\uB958-\uD0A4\uC6CC\uB4DC-\uC870\uC815"
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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. 안정 | ||
Comment on lines
+19
to
+20
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 안전이랑 안정이 겹치는 개념같아서 고민이 되네요. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 처음에 저도 단어 자체 생긴건 비슷해서 문제되지않을까 생각했는데 다시 생각해보니 뜻 자체는 안겹치니까 괜찮지 않을까 생각했습니다 ! 이 키워드를 통해 좀 살을 붙여서 클라이언트쪽에 제공해줄 수 있는 방법도 필요 할 것 같아요 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 안정이 평화로도 될 수 있을 것 같은데 조금 더 고민해봐야 할 것 같아요.
|
||
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가지 키워드를 가지고 진행하려고 하였으나 개발 및 디자인 측면에서 어려움이 있어서 다음과 같이 변경하였습니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
문서화 👍👍👍👍👍