All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastchar.extjs.provider.FastExtBaseEnum Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
package com.fastchar.extjs.provider;

import com.fastchar.extjs.core.enums.FastEnumInfo;
import com.fastchar.extjs.interfaces.IFastExtEnum;
import com.fastchar.utils.FastEnumUtils;
import com.fastchar.utils.FastStringUtils;

import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.List;

public abstract class FastExtBaseEnum implements IFastExtEnum {

    public abstract Class getEnumClass();


    private List enumInfos;
    @Override
    public final List getEnums() throws Exception {
        if (enumInfos == null) {
            enumInfos = new ArrayList<>();
            Field[] declaredFields = getEnumClass().getDeclaredFields();
            Enum[] enumValues = FastEnumUtils.getEnumValues(getEnumClass());

            for (Enum enumValue : enumValues) {
                FastEnumInfo info = new FastEnumInfo();
                info.setId(enumValue.ordinal());
                info.setText(enumValue.name());

                for (Field declaredField : declaredFields) {
                    if (declaredField.isEnumConstant()) {
                        continue;
                    }
                    if (Modifier.isPublic(declaredField.getModifiers())) {
                        String value = String.valueOf(declaredField.get(enumValue));
                        info.put(declaredField.getName(), value);
                    }
                }
                info.fromProperty();
                enumInfos.add(info);
            }
        }
        return enumInfos;
    }

    @Override
    public final FastEnumInfo getEnum(int id) throws Exception {
        if (getEnumClass() == null) {
            return null;
        }
        FastEnumInfo enumInfo = new FastEnumInfo();
        enumInfo.setId(id);
        Enum anEnum = FastEnumUtils.formatToEnum(getEnumClass(), id);
        if (anEnum == null) {
            return null;
        }
        enumInfo.setText(anEnum.name());
        return enumInfo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy