- 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 Summary
Enum Constants Enum Constant Description COMPLETE
COMPLETE_ALREADY_PRESENT
COMPLETE_ERRORS
COMPLETE_NOT_REQUIRED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LibraryCollector.CollectorResult
valueOf(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_REQUIRED
public static final LibraryCollector.CollectorResult COMPLETE_NOT_REQUIRED
-
COMPLETE_ALREADY_PRESENT
public static final LibraryCollector.CollectorResult COMPLETE_ALREADY_PRESENT
-
COMPLETE_ERRORS
public static final LibraryCollector.CollectorResult COMPLETE_ERRORS
-
COMPLETE
public static final LibraryCollector.CollectorResult COMPLETE
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 nameNullPointerException
- if the argument is null
-
-