Package com.sgs.common.database
Enum CycleCountRun.CycleCountRunStatus
- java.lang.Object
-
- java.lang.Enum<CycleCountRun.CycleCountRunStatus>
-
- com.sgs.common.database.CycleCountRun.CycleCountRunStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CycleCountRun.CycleCountRunStatus>
- Enclosing class:
- CycleCountRun
public static enum CycleCountRun.CycleCountRunStatus extends java.lang.Enum<CycleCountRun.CycleCountRunStatus>
The status of the cycle run- Author:
- SGSystems
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getInt()
static CycleCountRun.CycleCountRunStatus
parse(int type)
static CycleCountRun.CycleCountRunStatus
parse(java.lang.String type)
java.lang.String
toString()
static CycleCountRun.CycleCountRunStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CycleCountRun.CycleCountRunStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PENDING
public static final CycleCountRun.CycleCountRunStatus PENDING
-
STARTED
public static final CycleCountRun.CycleCountRunStatus STARTED
-
COMPLETE
public static final CycleCountRun.CycleCountRunStatus COMPLETE
-
-
Method Detail
-
values
public static CycleCountRun.CycleCountRunStatus[] 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 (CycleCountRun.CycleCountRunStatus c : CycleCountRun.CycleCountRunStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CycleCountRun.CycleCountRunStatus 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
-
parse
public static CycleCountRun.CycleCountRunStatus parse(int type)
-
parse
public static CycleCountRun.CycleCountRunStatus parse(java.lang.String type)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<CycleCountRun.CycleCountRunStatus>
-
getInt
public int getInt()
-
-