Serializable, Comparable<ProductType>public enum ProductType extends Enum<ProductType>
| Enum Constant | Description |
|---|---|
BASIC_DESKTOP |
|
DAYPASS |
|
FREE |
|
OPEN |
|
PREMIUM |
| Modifier and Type | Method | Description |
|---|---|---|
String |
getType() |
Get the Spotify product type as a string.
|
static ProductType |
keyOf(String type) |
|
static ProductType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ProductType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProductType BASIC_DESKTOP
public static final ProductType DAYPASS
public static final ProductType FREE
public static final ProductType OPEN
public static final ProductType PREMIUM
public final String type
public static ProductType[] values()
for (ProductType c : ProductType.values()) System.out.println(c);
public static ProductType 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 static ProductType keyOf(String type)
public String getType()
Copyright © 2019. All rights reserved.