JPF 1.5.1

org.java.plugin.registry
Enum IntegrityCheckReport.Error

java.lang.Object
  extended by java.lang.Enum<IntegrityCheckReport.Error>
      extended by 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
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
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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

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 final IntegrityCheckReport.Error[] values()
Returns an array containing the constants of this enum type, in the order they're 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're 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 name

JPF 1.5.1

Copyright © 2004-2007 Dmitry Olshansky. All Rights Reserved.