public final int ordinal() Returns the ordinal of this enumeration constant (its position in its enum declaration, where the initial constant is assigned an ordinal of zero). Most programmers will have no use for this method. It is designed for use by sophisticated enum-based data structures, such as EnumSet and EnumMap. Returns: the ordinal of this enumeration constant
Most programmers will have no use for this method(대부분의 프로그래머는 이메소드를 쓸일이 없다.)
위에 처럼 코멘트 되어 있다. 그럼 더 나은 방법으로는 아래의 방법이 좋다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.github.sejoung.codetest.enumtest;
// 인스턴스 필드에 정수 데이터를 저장하는 열거 타입 (222쪽) publicenumEnsemble {