public enum AppPostbackUrlErrorReason extends Enum<AppPostbackUrlErrorReason>
Java class for AppPostbackUrlError.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AppPostbackUrlError.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="INVALID_URL_FORMAT"/>
<enumeration value="INVALID_DOMAIN"/>
<enumeration value="REQUIRED_MACRO_NOT_FOUND"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INVALID_DOMAIN
Invalid domain.
|
INVALID_URL_FORMAT
Invalid Url format.
|
REQUIRED_MACRO_NOT_FOUND
Some of the required macros were not found.
|
| Modifier and Type | Method and Description |
|---|---|
static AppPostbackUrlErrorReason |
fromValue(String v) |
String |
value() |
static AppPostbackUrlErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AppPostbackUrlErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppPostbackUrlErrorReason INVALID_URL_FORMAT
public static final AppPostbackUrlErrorReason INVALID_DOMAIN
public static final AppPostbackUrlErrorReason REQUIRED_MACRO_NOT_FOUND
public static AppPostbackUrlErrorReason[] values()
for (AppPostbackUrlErrorReason c : AppPostbackUrlErrorReason.values()) System.out.println(c);
public static AppPostbackUrlErrorReason 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 AppPostbackUrlErrorReason fromValue(String v)
Copyright © 2023. All rights reserved.