public static enum Bundle.Status extends Enum<Bundle.Status>
Enum Constant and Description |
---|
ACTIVE |
FRAGMENT |
INSTALLED |
RESOLVED |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Bundle.Status |
value(String o) |
static Bundle.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bundle.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bundle.Status ACTIVE
public static final Bundle.Status FRAGMENT
public static final Bundle.Status RESOLVED
public static final Bundle.Status INSTALLED
public static Bundle.Status[] values()
for (Bundle.Status c : Bundle.Status.values()) System.out.println(c);
public static Bundle.Status 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 nullpublic static Bundle.Status value(String o)
public String toString()
toString
in class Enum<Bundle.Status>
Copyright © 2007–2018 The Apache Software Foundation. All rights reserved.