public enum ToastType extends Enum<ToastType>
| Enum Constant and Description |
|---|
ToastImageAndText01 |
ToastImageAndText02 |
ToastImageAndText03 |
ToastImageAndText04 |
ToastText01 |
ToastText02 |
ToastText03 |
ToastText04 |
| Modifier and Type | Method and Description |
|---|---|
static ToastType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ToastType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToastType ToastText01
public static final ToastType ToastText02
public static final ToastType ToastText03
public static final ToastType ToastText04
public static final ToastType ToastImageAndText01
public static final ToastType ToastImageAndText02
public static final ToastType ToastImageAndText03
public static final ToastType ToastImageAndText04
public static ToastType[] values()
for (ToastType c : ToastType.values()) System.out.println(c);
public static ToastType 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 © 2016 JBoss by Red Hat. All Rights Reserved.