public enum DiscussionEventTypes extends Enum<DiscussionEventTypes> implements org.ext.uberfire.social.activities.model.SocialEventType
| Enum Constant and Description |
|---|
COMMENT_ADDED |
| Modifier and Type | Method and Description |
|---|---|
static DiscussionEventTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiscussionEventTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiscussionEventTypes COMMENT_ADDED
public static DiscussionEventTypes[] values()
for (DiscussionEventTypes c : DiscussionEventTypes.values()) System.out.println(c);
public static DiscussionEventTypes 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 © 2001–2017 JBoss by Red Hat. All rights reserved.