public static enum Product.DownloadType extends Enum<Product.DownloadType>
| Enum Constant and Description |
|---|
APPLICATION |
MUSIC |
STANDARD |
| Modifier and Type | Method and Description |
|---|---|
String |
jsonValue() |
static Product.DownloadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Product.DownloadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Product.DownloadType STANDARD
public static final Product.DownloadType APPLICATION
public static final Product.DownloadType MUSIC
public static Product.DownloadType[] values()
for (Product.DownloadType c : Product.DownloadType.values()) System.out.println(c);
public static Product.DownloadType 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 jsonValue()
Copyright © 2017 Netgrid. All rights reserved.