Package org.duracloud.mill.bitlog
Enum BitIntegrityResult
- java.lang.Object
-
- java.lang.Enum<BitIntegrityResult>
-
- org.duracloud.mill.bitlog.BitIntegrityResult
-
- All Implemented Interfaces:
Serializable,Comparable<BitIntegrityResult>
public enum BitIntegrityResult extends Enum<BitIntegrityResult>
- Author:
- Daniel Bernstein Date: Apr 25, 2014
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BitIntegrityResultvalueOf(String name)Returns the enum constant of this type with the specified name.static BitIntegrityResult[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final BitIntegrityResult SUCCESS
-
FAILURE
public static final BitIntegrityResult FAILURE
-
ERROR
public static final BitIntegrityResult ERROR
-
IGNORE
public static final BitIntegrityResult IGNORE
-
-
Method Detail
-
values
public static BitIntegrityResult[] 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 (BitIntegrityResult c : BitIntegrityResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BitIntegrityResult 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
-
-