public enum PhoneNumberFeature extends Enum<PhoneNumberFeature>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static PhoneNumberFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PhoneNumberFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhoneNumberFeature SMS
public static final PhoneNumberFeature MMS
public static final PhoneNumberFeature VOICE
public static PhoneNumberFeature[] values()
for (PhoneNumberFeature c : PhoneNumberFeature.values()) System.out.println(c);
public static PhoneNumberFeature 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 toString()
toString in class Enum<PhoneNumberFeature>Copyright © 2024. All rights reserved.