public static enum Result.Kind extends Enum<Result.Kind>
| Enum Constant and Description |
|---|
FAIL |
INFORMATIONAL |
NOT_APPLICABLE |
OPEN |
PASS |
REVIEW |
| Modifier and Type | Method and Description |
|---|---|
static Result.Kind |
fromValue(String value) |
String |
toString() |
String |
value() |
static Result.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Result.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Result.Kind NOT_APPLICABLE
public static final Result.Kind PASS
public static final Result.Kind FAIL
public static final Result.Kind REVIEW
public static final Result.Kind OPEN
public static final Result.Kind INFORMATIONAL
public static Result.Kind[] values()
for (Result.Kind c : Result.Kind.values()) System.out.println(c);
public static Result.Kind 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 String toString()
toString in class Enum<Result.Kind>public String value()
public static Result.Kind fromValue(String value)
Copyright © 2020 Contrast Security. All rights reserved.