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