public enum OptionType extends Enum<OptionType>
| Enum Constant and Description |
|---|
BUG |
INFO |
PROGRESS |
QUESTION |
STOP |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
String |
getImageType() |
String |
getTitle() |
static OptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionType INFO
public static final OptionType WARNING
public static final OptionType QUESTION
public static final OptionType STOP
public static final OptionType BUG
public static final OptionType PROGRESS
public static OptionType[] values()
for (OptionType c : OptionType.values()) System.out.println(c);
public static OptionType 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 getTitle()
public String getImageType()
Copyright © 2016. All rights reserved.