public enum RichFieldType extends Enum<RichFieldType>
| Enum Constant and Description |
|---|
FORM_FIELD_CHECK_BOX
自定义多选
|
FORM_FIELD_RADIO
自定义单选
|
FORM_FIELD_SELECT
自定义选择项
|
| Modifier and Type | Method and Description |
|---|---|
static RichFieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RichFieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RichFieldType FORM_FIELD_RADIO
public static final RichFieldType FORM_FIELD_SELECT
public static final RichFieldType FORM_FIELD_CHECK_BOX
public static RichFieldType[] values()
for (RichFieldType c : RichFieldType.values()) System.out.println(c);
public static RichFieldType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.