public enum HtmlTypeEnum extends Enum<HtmlTypeEnum>
| 枚举常量和说明 |
|---|
DATE_SELECTOR
date selector.
|
DATETIME_SELECTOR
datetime selector.
|
NUMBER_DECIMAL
Numeric input box, decimal.
|
NUMBER_INTEGER
Numeric input box, integer.
|
SELECT
Drop down selection box.
|
TEXT
Textbox.
|
TEXT_AREA
Text area, which is generally used to show the JSON string of the Java Bean contained in the parameter.
|
TEXT_BYTE
Textbox, This type will be converted to byte before calling dubbo API.
|
TEXT_CHAR
Textbox, will be limited to one character.
|
public static final HtmlTypeEnum TEXT
public static final HtmlTypeEnum TEXT_BYTE
public static final HtmlTypeEnum TEXT_CHAR
public static final HtmlTypeEnum NUMBER_INTEGER
public static final HtmlTypeEnum NUMBER_DECIMAL
public static final HtmlTypeEnum SELECT
public static final HtmlTypeEnum TEXT_AREA
public static final HtmlTypeEnum DATE_SELECTOR
public static final HtmlTypeEnum DATETIME_SELECTOR
public static HtmlTypeEnum[] values()
for (HtmlTypeEnum c : HtmlTypeEnum.values()) System.out.println(c);
public static HtmlTypeEnum valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020–2021 The Apache Software Foundation. All rights reserved.