- java.lang.Object
- 
- java.lang.Enum<LibraryCollector.CollectorResult>
- 
- com.ibm.j9ddr.libraries.LibraryCollector.CollectorResult
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<LibraryCollector.CollectorResult>
 - Enclosing class:
- LibraryCollector
 
 public static enum LibraryCollector.CollectorResult extends Enum<LibraryCollector.CollectorResult> Used to indicated the overall outcome when invoking the library collection process
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description COMPLETECOMPLETE_ALREADY_PRESENTCOMPLETE_ERRORSCOMPLETE_NOT_REQUIRED
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static LibraryCollector.CollectorResultvalueOf(String name)Returns the enum constant of this type with the specified name.static LibraryCollector.CollectorResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
COMPLETE_NOT_REQUIREDpublic static final LibraryCollector.CollectorResult COMPLETE_NOT_REQUIRED 
 - 
COMPLETE_ALREADY_PRESENTpublic static final LibraryCollector.CollectorResult COMPLETE_ALREADY_PRESENT 
 - 
COMPLETE_ERRORSpublic static final LibraryCollector.CollectorResult COMPLETE_ERRORS 
 - 
COMPLETEpublic static final LibraryCollector.CollectorResult COMPLETE 
 
- 
 - 
Method Detail- 
valuespublic static LibraryCollector.CollectorResult[] 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 (LibraryCollector.CollectorResult c : LibraryCollector.CollectorResult.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static LibraryCollector.CollectorResult 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-