public enum RepairStatusType extends Enum<RepairStatusType> implements HasName
| Enum Constant and Description |
|---|
NOT_NECESSARY
Defect has identified as Not Necessary to repair.
|
NOT_REPAIRED
Defect has not been repaired yet.
|
REPAIRED
Defect has been Repaired.
|
UNKNOWN
Fallback when enumeration value is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
static RepairStatusType |
findOrDefault(String name) |
int |
getCode() |
String |
getName() |
static RepairStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RepairStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RepairStatusType UNKNOWN
public static final RepairStatusType NOT_REPAIRED
public static final RepairStatusType REPAIRED
public static final RepairStatusType NOT_NECESSARY
public static RepairStatusType[] values()
for (RepairStatusType c : RepairStatusType.values()) System.out.println(c);
public static RepairStatusType 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 nullpublic int getCode()
public static RepairStatusType findOrDefault(String name)
Copyright © 2023. All rights reserved.