Enum ReportItem.ReportItemStatus
- java.lang.Object
-
- java.lang.Enum<ReportItem.ReportItemStatus>
-
- com.itextpdf.signatures.validation.v1.report.ReportItem.ReportItemStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ReportItem.ReportItemStatus>
- Enclosing class:
- ReportItem
public static enum ReportItem.ReportItemStatus extends java.lang.Enum<ReportItem.ReportItemStatus>
Enum representing possible report item statuses that determine validation result.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INDETERMINATE
Report item status that leads to indeterminate validation result.INFO
Report item status for info messages.INVALID
Report item status that leads to invalid validation result.
-
Constructor Summary
Constructors Modifier Constructor Description private
ReportItemStatus()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReportItem.ReportItemStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ReportItem.ReportItemStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFO
public static final ReportItem.ReportItemStatus INFO
Report item status for info messages.
-
INVALID
public static final ReportItem.ReportItemStatus INVALID
Report item status that leads to invalid validation result.
-
INDETERMINATE
public static final ReportItem.ReportItemStatus INDETERMINATE
Report item status that leads to indeterminate validation result.
-
-
Method Detail
-
values
public static ReportItem.ReportItemStatus[] 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.ReportItemStatus c : ReportItem.ReportItemStatus.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.ReportItemStatus 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
-
-