public enum DomainResolvedType extends java.lang.Enum<DomainResolvedType> implements EnumParam
| Enum Constant and Description |
|---|
APPLICATION |
COMMUNITY_APPLICATION |
GROUP |
PAGE |
USER |
VK_APP |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static DomainResolvedType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DomainResolvedType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="user") public static final DomainResolvedType USER
@SerializedName(value="group") public static final DomainResolvedType GROUP
@SerializedName(value="application") public static final DomainResolvedType APPLICATION
@SerializedName(value="page") public static final DomainResolvedType PAGE
@SerializedName(value="vk_app") public static final DomainResolvedType VK_APP
@SerializedName(value="community_application") public static final DomainResolvedType COMMUNITY_APPLICATION
public static DomainResolvedType[] values()
for (DomainResolvedType c : DomainResolvedType.values()) System.out.println(c);
public static DomainResolvedType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<DomainResolvedType>