public static enum Storefront.MediaHost extends java.lang.Enum<Storefront.MediaHost>
| Enum Constant and Description |
|---|
UNKNOWN_VALUE |
VIMEO
Host for Vimeo embedded videos.
|
YOUTUBE
Host for YouTube embedded videos.
|
| Modifier and Type | Method and Description |
|---|---|
static Storefront.MediaHost |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.MediaHost |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.MediaHost[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.MediaHost VIMEO
public static final Storefront.MediaHost YOUTUBE
public static final Storefront.MediaHost UNKNOWN_VALUE
public static Storefront.MediaHost[] values()
for (Storefront.MediaHost c : Storefront.MediaHost.values()) System.out.println(c);
public static Storefront.MediaHost 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 static Storefront.MediaHost fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.MediaHost>