public static enum DialogFragment.DialogType extends java.lang.Enum<DialogFragment.DialogType>
| Enum Constant and Description |
|---|
AlertDialog |
Dialog |
| Modifier and Type | Method and Description |
|---|---|
static DialogFragment.DialogType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DialogFragment.DialogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DialogFragment.DialogType AlertDialog
public static final DialogFragment.DialogType Dialog
public static DialogFragment.DialogType[] values()
for (DialogFragment.DialogType c : DialogFragment.DialogType.values()) System.out.println(c);
public static DialogFragment.DialogType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2012-2013. All Rights Reserved.