public enum SuccessLevel extends Enum<SuccessLevel>
Enum Constant and Description |
---|
FULL
Full
|
NONE
None
|
PARTIAL
Partial
|
Modifier and Type | Method and Description |
---|---|
static SuccessLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SuccessLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuccessLevel FULL
public static final SuccessLevel PARTIAL
public static final SuccessLevel NONE
public static SuccessLevel[] values()
for (SuccessLevel c : SuccessLevel.values()) System.out.println(c);
public static SuccessLevel 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 © 2019. All rights reserved.