public static enum ProductInformation.Platform extends java.lang.Enum<ProductInformation.Platform>
Modifier and Type | Method and Description |
---|---|
static ProductInformation.Platform |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProductInformation.Platform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProductInformation.Platform Android
public static final ProductInformation.Platform Windows
public static final ProductInformation.Platform iOS
public static ProductInformation.Platform[] values()
for (ProductInformation.Platform c : ProductInformation.Platform.values()) System.out.println(c);
public static ProductInformation.Platform 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 null