public enum ClockStatusEnum extends Enum<ClockStatusEnum>
Enum Constant and Description |
---|
CLOCKED
已签到
|
LEAVE
已签退
|
MEANINGLESS
系统自动签退
|
Modifier and Type | Method and Description |
---|---|
static ClockStatusEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClockStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClockStatusEnum CLOCKED
public static final ClockStatusEnum LEAVE
public static final ClockStatusEnum MEANINGLESS
public static ClockStatusEnum[] values()
for (ClockStatusEnum c : ClockStatusEnum.values()) System.out.println(c);
public static ClockStatusEnum valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022. All rights reserved.