Enum ScanStatusType
- java.lang.Object
-
- java.lang.Enum<ScanStatusType>
-
- com.synopsys.integration.blackduck.api.generated.enumeration.ScanStatusType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ScanStatusType>
public enum ScanStatusType extends java.lang.Enum<ScanStatusType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOM_VERSION_CHECKBUILDING_BOMCANCELLEDCLONEDCOMPLETEERRORERROR_BUILDING_BOMERROR_MATCHINGERROR_SAVING_SCAN_DATAERROR_SCANNINGMATCHINGREQUESTED_MATCH_JOBSAVING_SCAN_DATASCAN_DATA_SAVE_COMPLETESCANNINGSKIPPEDUNSTARTED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringprettyPrint()static ScanStatusTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ScanStatusType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOM_VERSION_CHECK
public static final ScanStatusType BOM_VERSION_CHECK
-
BUILDING_BOM
public static final ScanStatusType BUILDING_BOM
-
CANCELLED
public static final ScanStatusType CANCELLED
-
CLONED
public static final ScanStatusType CLONED
-
COMPLETE
public static final ScanStatusType COMPLETE
-
ERROR
public static final ScanStatusType ERROR
-
ERROR_BUILDING_BOM
public static final ScanStatusType ERROR_BUILDING_BOM
-
ERROR_MATCHING
public static final ScanStatusType ERROR_MATCHING
-
ERROR_SAVING_SCAN_DATA
public static final ScanStatusType ERROR_SAVING_SCAN_DATA
-
ERROR_SCANNING
public static final ScanStatusType ERROR_SCANNING
-
MATCHING
public static final ScanStatusType MATCHING
-
REQUESTED_MATCH_JOB
public static final ScanStatusType REQUESTED_MATCH_JOB
-
SAVING_SCAN_DATA
public static final ScanStatusType SAVING_SCAN_DATA
-
SCANNING
public static final ScanStatusType SCANNING
-
SCAN_DATA_SAVE_COMPLETE
public static final ScanStatusType SCAN_DATA_SAVE_COMPLETE
-
SKIPPED
public static final ScanStatusType SKIPPED
-
UNSTARTED
public static final ScanStatusType UNSTARTED
-
-
Method Detail
-
values
public static ScanStatusType[] 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 (ScanStatusType c : ScanStatusType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScanStatusType 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
-
prettyPrint
public java.lang.String prettyPrint()
-
-