public enum Status extends Enum<Status>
| Enum Constant and Description |
|---|
ANALYZE |
DEFER |
FILTER |
FIX |
FIX_IN_LATER_RELEASE |
FIX_IN_NEXT_RELEASE |
IGNORE |
NOT_A_PROBLEM |
| Modifier and Type | Method and Description |
|---|---|
int |
getId() |
String |
getName() |
static Status |
getValue(int value) |
static Status |
getValue(String value) |
String |
toString() |
static Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Status ANALYZE
public static final Status IGNORE
public static final Status NOT_A_PROBLEM
public static final Status FIX
public static final Status FIX_IN_NEXT_RELEASE
public static final Status FIX_IN_LATER_RELEASE
public static final Status DEFER
public static final Status FILTER
public static Status[] values()
for (Status c : Status.values()) System.out.println(c);
public static Status 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 getId()
public String getName()
public static Status getValue(int value)
Copyright © 2016–2023. All rights reserved.