Enum値のセットをBigIntegerとして読み書きするための汎用メソッドを設計しました
私のオリジナルの実装
public static <T extends Enum<T>> Set<T> asList(BigInteger integer, Class<T> targetClass) {
Set<T> enums = new HashSet<T>();
// Step 0. Sanity check
if (targetClass == null || integer == null || !targetClass.isEnum())
return enums;
// Step 1. Checking each value of target class
T[] values = targetClass.getEnumConstants();
for (int i = 0; i < values.length; i++) {
if (integer.testBit(i))
enums.add(values[i]);
}
// Step 3. Returning final enums
return enums;
}
しかし、私はに切り替えました:
public static <T extends Enum<T>> Set<T> asSet(BigInteger integer, Class<T> targetClass) {
Set<T> enums = new HashSet<T>();
// Step 0. Sanity check
if (targetClass == null || integer == null || !targetClass.isEnum())
return enums;
// Step 1. Checking each value of target class
T[] values = targetClass.getEnumConstants();
for (int i = 0; i < values.length; i++) {
T value = values[i];
if (integer.testBit(value.ordinal()))
enums.add(value);
}
// Step 3. Returning final enums
return enums;
}
ドキュメントの Enum.ordinal の説明のために、私はそうしました:
* Returns the ordinal of this enumeration constant (its position
* in its enum declaration, where the initial constant is assigned
* an ordinal of zero).
したがって、基本的に、最初の値が常に 0 になるとは限りません。
どの場合、またはどの JVM で enum の初期値が 0 ではありませんか?