public static enum ObjectType.WebApiType extends Enum<ObjectType.WebApiType> implements Type
| Enum Constant and Description |
|---|
DOCUMENT |
DOM_ELEMENT |
WINDOW |
| Modifier and Type | Method and Description |
|---|---|
static ObjectType.WebApiType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectType.WebApiType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectType.WebApiType WINDOW
public static final ObjectType.WebApiType DOCUMENT
public static final ObjectType.WebApiType DOM_ELEMENT
public static ObjectType.WebApiType[] values()
for (ObjectType.WebApiType c : ObjectType.WebApiType.values()) System.out.println(c);
public static ObjectType.WebApiType 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 © 2011–2015 SonarSource and Eriks Nukis. All rights reserved.