public enum MobiKind extends Enum<MobiKind>
| Modifier and Type | Method and Description |
|---|---|
static MobiKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MobiKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MobiKind VOICE
public static final MobiKind SMS
public static final MobiKind MMS
public static final MobiKind XMPP
public static MobiKind[] values()
for (MobiKind c : MobiKind.values()) System.out.println(c);
public static MobiKind 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 nullCopyright © 2008-2014 Red Hat, Inc.. All Rights Reserved.