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