Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 젠킨스
- python 기초
- 미국주식
- intelliJ plugin
- Vue 알아보기
- Vue 강의
- 도커
- docker 명령어
- Vue 배우기
- Spring
- 티스토리 광고 수익
- IntelliJ
- gradle
- 구글 애드센스 수익
- docker
- JDK1.3
- spring boot 시작
- AES256
- Vue
- apache log4j
- Spring Batch
- docker mysql
- python
- 미국 배당주
- scrapy
- MYSQL
- Python 기본편
- 애드센스 수익
- spring Annotation
- Spring Batch 강의
Archives
나만의공간
JAVA enum 사용법 본문
자바 enum 사용법
자바 1.5부터 제공되는 enum에 대한 사용법
기본사용법
City.java
public enum City { SEOUL, NEWYORK, ATHENS, BERLIN, MOSCOW, SINGAPORE, ; }
Sample.java
public class Sample {
public static void main(String[] args) {
System.out.println(City.NEWYORK);
}
}
초기값 설정사용법
CityHangul.java
public enum CityHangul { SEOUL("서울"), NEWYORK("뉴욕"), ATHENS("아테네"), BERLIN("베를린"), MOSCOW("모스크바"), SINGAPORE("싱가폴"), ; private String cityName; CityHangul(String cityName) { this.cityName = cityName; } public String cityName() { return cityName; } }
Sample.java
public class Sample { public static void main(String[] args) { System.out.println(CityHangul.SEOUL.cityName()); } }
enum에 로직 추가
BigDecimalCal.java
public enum BigDecimalCal { PLUS, MINUS, MULTIPLY, DIVIDE, ; BigDecimal operation(BigDecimal a, BigDecimal b) { switch (this) { case PLUS : return a.add(b); case MINUS : return a.subtract(b); case MULTIPLY : return a.multiply(b); case DIVIDE : return a.divide(b); default : throw new AssertionError("지원하지 않는 공식입니다"); } } }
Sample.java
public class Sample { public static void main(String[] args) { BigDecimal num1 = BigDecimalCal.PLUS.operation(new BigDecimal(100), new BigDecimal(20)); System.out.println(num1); BigDecimal num2 = BigDecimalCal.MINUS.operation(new BigDecimal(100), new BigDecimal(20)); System.out.println(num2); BigDecimal num3 = BigDecimalCal.MULTIPLY.operation(new BigDecimal(100), new BigDecimal(20)); System.out.println(num3); BigDecimal num4 = BigDecimalCal.DIVIDE.operation(new BigDecimal(100), new BigDecimal(20)); System.out.println(num4); } }
'IT > JAVA' 카테고리의 다른 글
HttpConnection Get / Post 사용법 (0) | 2017.08.31 |
---|---|
전화번호/핸드폰 자릿수 체크해서 하이픈 넣는법 (0) | 2017.07.28 |
DTO/Domain 속성을 Json변환시 JsonProperty를 이용하여 불필요한 도메인 제외 (1) | 2017.03.02 |
시스템 시작 종료시간 체크 (0) | 2017.03.02 |
SSL 인증서 없이 https 통신하는 법 예제 (0) | 2015.09.24 |
Comments