public enum ElementType extends Enum<ElementType>
文件名:EelementType.java
用途: 用于标记当前传入的元素是以何种方式进行获取
编码时间:2020年5月22日上午7:57:32
修改时间:2020年5月22日上午7:57:32
Enum Constant and Description |
---|
COMMON_ELEMENT
指向普通类型元素
|
DATA_LIST_ELEMENT
指向数据列表类型元素
|
IFRAME_ELEMENT
指向窗体型元素
|
SELECT_DATAS_ELEMENT
指向列表型下拉框选择类型元素
|
SELECT_OPTION_ELEMENT
指向标准下拉框选择类型元素
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementType COMMON_ELEMENT
public static final ElementType DATA_LIST_ELEMENT
public static final ElementType SELECT_OPTION_ELEMENT
public static final ElementType SELECT_DATAS_ELEMENT
public static final ElementType IFRAME_ELEMENT
public static ElementType[] values()
for (ElementType c : ElementType.values()) System.out.println(c);
public static ElementType 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 nullpublic int getValue()
Copyright © 2024. All rights reserved.