forked from plusone/plusone-commons
修改方法名。
This commit is contained in:
@@ -46,7 +46,7 @@ public final class EnumTools {
|
||||
public static <E extends Enum<?>> E valueOf(Class<E> clazz, int ordinal) { // NOSONAR 该方法弃用,但不删掉
|
||||
Preconditions.checkNotNull(clazz, "Clazz must not be null.");
|
||||
E[] values = clazz.getEnumConstants();
|
||||
PreconditionsExt.check((ordinal >= 0 && ordinal < values.length),
|
||||
PreconditionsExt.checkCondition((ordinal >= 0 && ordinal < values.length),
|
||||
() -> new EnumConstantNotPresentException(clazz, Integer.toString(ordinal)));
|
||||
return values[ordinal];
|
||||
}
|
||||
|
Reference in New Issue
Block a user