public enum Ico extends Enum<Ico>
| Enum Constant and Description |
|---|
FAIL |
INFO |
PASS |
RETRY |
SKIP |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
String |
getIco() |
String |
getName() |
static Ico |
ico(String name) |
String |
toString() |
static Ico |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ico[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ico INFO
public static final Ico PASS
public static final Ico SKIP
public static final Ico WARNING
public static final Ico FAIL
public static final Ico RETRY
public static Ico[] values()
for (Ico c : Ico.values()) System.out.println(c);
public static Ico 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 getName()
public String getIco()
Copyright © 2020. All rights reserved.