Package cdc.impex
Enum ImpExStatus
- java.lang.Object
-
- java.lang.Enum<ImpExStatus>
-
- cdc.impex.ImpExStatus
-
- All Implemented Interfaces:
Serializable,Comparable<ImpExStatus>
public enum ImpExStatus extends Enum<ImpExStatus>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidcheckStatus(ImpExStatus actual, ImpExStatus expected)static ImpExStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static ImpExStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INIT
public static final ImpExStatus INIT
-
WORKBOOK
public static final ImpExStatus WORKBOOK
-
SHEET
public static final ImpExStatus SHEET
-
ROW
public static final ImpExStatus ROW
-
-
Method Detail
-
values
public static ImpExStatus[] 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 (ImpExStatus c : ImpExStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImpExStatus 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
-
checkStatus
public static void checkStatus(ImpExStatus actual, ImpExStatus expected)
-
-