Enum ProcessCheckType
- java.lang.Object
-
- java.lang.Enum<ProcessCheckType>
-
- org.silverpeas.core.process.check.ProcessCheckType
-
- All Implemented Interfaces:
Serializable
,Comparable<ProcessCheckType>
public enum ProcessCheckType extends Enum<ProcessCheckType>
This enumeration represents several types of transversal verifications.- Author:
- Yohann Chastagnier
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATA
FILESYSTEM
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProcessCheckType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProcessCheckType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATA
public static final ProcessCheckType DATA
-
FILESYSTEM
public static final ProcessCheckType FILESYSTEM
-
-
Method Detail
-
values
public static ProcessCheckType[] 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 (ProcessCheckType c : ProcessCheckType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessCheckType 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
-
-