public enum FormElementType extends Enum<FormElementType>
| 枚举常量和说明 |
|---|
CHECKBOX |
DATE |
INPUT |
NUMBER |
RADIO |
SELECT |
SLIDER |
SWITCH |
TAG |
TEXT |
TEXTAREA |
TREE |
UPLOAD |
public static final FormElementType SWITCH
public static final FormElementType DATE
public static final FormElementType TEXT
public static final FormElementType RADIO
public static final FormElementType INPUT
public static final FormElementType TEXTAREA
public static final FormElementType SELECT
public static final FormElementType TREE
public static final FormElementType CHECKBOX
public static final FormElementType SLIDER
public static final FormElementType TAG
public static final FormElementType NUMBER
public static final FormElementType UPLOAD
public static FormElementType[] values()
for (FormElementType c : FormElementType.values()) System.out.println(c);
public static FormElementType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2022. All rights reserved.