public static enum IntegrityCheckReport.Error extends Enum<IntegrityCheckReport.Error>
Enum Constant and Description |
---|
BAD_LIBRARY
Integrity check error constant.
|
CHECKER_FAULT
Integrity check error constant.
|
INVALID_EXTENSION
Integrity check error constant.
|
INVALID_EXTENSION_POINT
Integrity check error constant.
|
MANIFEST_PROCESSING_FAILED
Integrity check error constant.
|
NO_ERROR
Integrity check error constant.
|
UNSATISFIED_PREREQUISITE
Integrity check error constant.
|
Modifier and Type | Method and Description |
---|---|
static IntegrityCheckReport.Error |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntegrityCheckReport.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegrityCheckReport.Error NO_ERROR
public static final IntegrityCheckReport.Error CHECKER_FAULT
public static final IntegrityCheckReport.Error MANIFEST_PROCESSING_FAILED
public static final IntegrityCheckReport.Error UNSATISFIED_PREREQUISITE
public static final IntegrityCheckReport.Error BAD_LIBRARY
public static final IntegrityCheckReport.Error INVALID_EXTENSION_POINT
public static final IntegrityCheckReport.Error INVALID_EXTENSION
public static IntegrityCheckReport.Error[] values()
for (IntegrityCheckReport.Error c : IntegrityCheckReport.Error.values()) System.out.println(c);
public static IntegrityCheckReport.Error 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 © 2017. All rights reserved.