public static enum IgnoreWhen.State extends Enum<IgnoreWhen.State>
| Enum Constant and Description |
|---|
DETACHED
Skip execution if the
EFragment is no longer bound to its parent
activity. |
VIEW_DESTROYED
Skip execution if the
EFragment views are destroyed. |
| Modifier and Type | Method and Description |
|---|---|
static IgnoreWhen.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IgnoreWhen.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IgnoreWhen.State DETACHED
EFragment is no longer bound to its parent
activity.public static final IgnoreWhen.State VIEW_DESTROYED
EFragment views are destroyed.public static IgnoreWhen.State[] values()
for (IgnoreWhen.State c : IgnoreWhen.State.values()) System.out.println(c);
public static IgnoreWhen.State 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 © 2010–2020 simpligility technologies inc.. All rights reserved.