-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5374e48
commit 78fb3f9
Showing
2 changed files
with
53 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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가지 키워드를 가지고 진행하려고 하였으나 개발 및 디자인 측면에서 어려움이 있어서 다음과 같이 변경하였습니다. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters