public enum AppInstallStage extends java.lang.Enum<AppInstallStage>
AppInstallListener
.
Not all stages may appear for every implementation of MEEP-1.0.
If for example discovery and download of application is not supported,
a stage like IS_DOWNLOADING_DESCRIPTOR
is never applicable and
will never appear.Enum Constant and Description |
---|
IS_DONE
Done.
|
IS_DOWNLOADING_BODY
Downloading application body.
|
IS_DOWNLOADING_DATA
Downloading additional application data.
|
IS_DOWNLOADING_DESCRIPTOR
Downloading application descriptor.
|
IS_STORING
Storing application.
|
IS_VERIFYING
Verifying downloaded content.
|
Modifier and Type | Method and Description |
---|---|
static AppInstallStage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppInstallStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AppInstallStage IS_DOWNLOADING_DESCRIPTOR
public static final AppInstallStage IS_DOWNLOADING_BODY
public static final AppInstallStage IS_DOWNLOADING_DATA
public static final AppInstallStage IS_VERIFYING
public static final AppInstallStage IS_STORING
public static final AppInstallStage IS_DONE
public static AppInstallStage[] values()
for (AppInstallStage c : AppInstallStage.values()) System.out.println(c);
public static AppInstallStage 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 (c) 2013, Oracle and/or its affiliates. All Rights Reserved. Use of this specification is subject to license terms.