Package org.java.plugin.registry
Enum IntegrityCheckReport.Error
- java.lang.Object
-
- java.lang.Enum<IntegrityCheckReport.Error>
-
- org.java.plugin.registry.IntegrityCheckReport.Error
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IntegrityCheckReport.Error>
- Enclosing interface:
- IntegrityCheckReport
public static enum IntegrityCheckReport.Error extends java.lang.Enum<IntegrityCheckReport.Error>
Integrity check error constants.- Version:
- $Id$
-
-
Enum Constant Summary
Enum Constants Enum Constant 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.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IntegrityCheckReport.Error
valueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
NO_ERROR
public static final IntegrityCheckReport.Error NO_ERROR
Integrity check error constant.
-
CHECKER_FAULT
public static final IntegrityCheckReport.Error CHECKER_FAULT
Integrity check error constant.
-
MANIFEST_PROCESSING_FAILED
public static final IntegrityCheckReport.Error MANIFEST_PROCESSING_FAILED
Integrity check error constant.
-
UNSATISFIED_PREREQUISITE
public static final IntegrityCheckReport.Error UNSATISFIED_PREREQUISITE
Integrity check error constant.
-
BAD_LIBRARY
public static final IntegrityCheckReport.Error BAD_LIBRARY
Integrity check error constant.
-
INVALID_EXTENSION_POINT
public static final IntegrityCheckReport.Error INVALID_EXTENSION_POINT
Integrity check error constant.
-
INVALID_EXTENSION
public static final IntegrityCheckReport.Error INVALID_EXTENSION
Integrity check error constant.
-
-
Method Detail
-
values
public static IntegrityCheckReport.Error[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IntegrityCheckReport.Error c : IntegrityCheckReport.Error.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IntegrityCheckReport.Error valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-