管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-10-28 f516a5d4cdc4995a2a2482b77f9fdf0e58fde644
src/main/java/com/lf/server/helper/EnumHelper.java
@@ -34,7 +34,7 @@
     * @return 返回枚举值
     */
    public static <T extends Enum<T>> T getByString(Class<T> clazz, String propertyName, String value) {
        String getterMethodName = GETTER_PREFIX + StringHelper.capitalize(propertyName);
        String getterMethodName = GETTER_PREFIX + StringHelper.firstCharToUpperCase(propertyName);
        T result = null;
        try {
            T[] arr = clazz.getEnumConstants();
@@ -62,7 +62,7 @@
     * @return 返回枚举值
     */
    public static <T extends Enum<T>> T getByInt(Class<T> clazz, String propertyName, int value) {
        String getterMethodName = GETTER_PREFIX + StringHelper.capitalize(propertyName);
        String getterMethodName = GETTER_PREFIX + StringHelper.firstCharToUpperCase(propertyName);
        T result = null;
        try {
            T[] arr = clazz.getEnumConstants();