public enum BeanLifecycle extends Enum<BeanLifecycle>
Enum Constant and Description |
---|
ADD |
CHANGE |
END_FRAGMENT |
POPULATE |
REMOVE |
START_FRAGMENT |
Modifier and Type | Method and Description |
---|---|
static BeanLifecycle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BeanLifecycle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BeanLifecycle START_FRAGMENT
public static final BeanLifecycle ADD
public static final BeanLifecycle POPULATE
public static final BeanLifecycle CHANGE
public static final BeanLifecycle END_FRAGMENT
public static final BeanLifecycle REMOVE
public static BeanLifecycle[] values()
for (BeanLifecycle c : BeanLifecycle.values()) System.out.println(c);
public static BeanLifecycle 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 © 2020. All rights reserved.