Enum ReportItem.Type
- java.lang.Object
-
- java.lang.Enum<ReportItem.Type>
-
- org.apache.jackrabbit.core.persistence.check.ReportItem.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<ReportItem.Type>
- Enclosing interface:
- ReportItem
public static enum ReportItem.Type extends Enum<ReportItem.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABANDONED
DISCONNECTED
ERROR
MISSING
ORPHANED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReportItem.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReportItem.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORPHANED
public static final ReportItem.Type ORPHANED
-
DISCONNECTED
public static final ReportItem.Type DISCONNECTED
-
ABANDONED
public static final ReportItem.Type ABANDONED
-
MISSING
public static final ReportItem.Type MISSING
-
ERROR
public static final ReportItem.Type ERROR
-
-
Method Detail
-
values
public static ReportItem.Type[] 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 (ReportItem.Type c : ReportItem.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReportItem.Type valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-