public enum ApiFramework extends Enum<ApiFramework>
Java class for ApiFramework.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ApiFramework">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="NONE"/>
<enumeration value="CLICKTAG"/>
<enumeration value="VPAID"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static ApiFramework |
fromValue(String v) |
String |
value() |
static ApiFramework |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiFramework[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiFramework NONE
public static final ApiFramework CLICKTAG
public static final ApiFramework VPAID
public static ApiFramework[] values()
for (ApiFramework c : ApiFramework.values()) System.out.println(c);
public static ApiFramework 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 String value()
public static ApiFramework fromValue(String v)
Copyright © 2018. All Rights Reserved.