public enum RoamingType extends Enum<RoamingType>
| Enum Constant and Description |
|---|
DOMESTIC_ROAMING |
INTERNATIONAL_ROAMING |
NOT_ROAMING |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
static RoamingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoamingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoamingType NOT_ROAMING
public static final RoamingType DOMESTIC_ROAMING
public static final RoamingType INTERNATIONAL_ROAMING
public static final RoamingType UNKNOWN
public static RoamingType[] values()
for (RoamingType c : RoamingType.values()) System.out.println(c);
public static RoamingType 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 getDescription()
Copyright © 2014. All rights reserved.