public static enum FeedBack.FeedBackType extends Enum<FeedBack.FeedBackType>
| Enum Constant and Description |
|---|
FEED
Feed from a stream like twitter
|
TIP
A tip
|
WARNING
A warning
|
| Modifier and Type | Method and Description |
|---|---|
static FeedBack.FeedBackType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FeedBack.FeedBackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeedBack.FeedBackType WARNING
public static final FeedBack.FeedBackType TIP
public static final FeedBack.FeedBackType FEED
public static FeedBack.FeedBackType[] values()
for (FeedBack.FeedBackType c : FeedBack.FeedBackType.values()) System.out.println(c);
public static FeedBack.FeedBackType 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 © 2014. All rights reserved.