首页 > 其他 > 详细

输入框枚举

时间:2019-07-07 11:07:13      阅读:109      评论:0      收藏:0      [点我收藏+]

public enum InputTypeEnum
{
/**
* 表单字段输入框类型枚举
*/
TEXT("文本", new String[]{""}, true),
PASSWORD("密码", new String[]{""}, true),
DATE("日期", new String[]{""}, true),
TEXTAREA("多行文本", new String[]{""}, true),

RADIO("单选", new String[]{""}, true),
CHECKBOX("多选", new String[]{""}, true),
SELECT("下拉框", new String[]{""}, true),

FILE("文件上传", new String[]{""}, true);


private String inputName;

private String[] config;
private boolean hasOption;

InputTypeEnum(String inputName, String[] config, boolean hasOption)
{
this.inputName = inputName;
this.config = config;
this.hasOption = hasOption;
}

/*public static InputTypeEnum getFormFieldEnumByCode(String type)
{
if (StringUtil.isEmpty(type))
{
return null;
}
InputTypeEnum[] inputTypeEnums = InputTypeEnum.values();
for (InputTypeEnum inputTypeEnum : inputTypeEnums)
{
if (type.equals(inputTypeEnum.type))
{
return inputTypeEnum;
}
}
return null;
}*/

public boolean checkConfig(ObjectNode configNode)
{
for (String str : config)
{
String value = configNode.get(str).asText();
}
return true;
}

public String getInputName()
{
return inputName;
}

public void setInputName(String inputName)
{
this.inputName = inputName;
}

public String[] getConfig()
{
return config;
}

public void setConfig(String[] config)
{
this.config = config;
}

public boolean isHasOption()
{
return hasOption;
}

public void setHasOption(boolean hasOption)
{
this.hasOption = hasOption;
}
}

输入框枚举

原文:https://www.cnblogs.com/zzl0916/p/11145086.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!