public enum SalResult extends Enum<SalResult>
Modifier and Type | Method and Description |
---|---|
static SalResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SalResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SalResult FAIL
public static final SalResult PASS
public static final SalResult WARN
public static SalResult[] values()
for (SalResult c : SalResult.values()) System.out.println(c);
public static SalResult 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 Atlassian Software Systems Pty Ltd. All rights reserved.