@Portable public enum DefaultTypes extends Enum<DefaultTypes> implements SocialEventType
| Enum Constant and Description |
|---|
DUMMY_EVENT |
| Modifier and Type | Method and Description |
|---|---|
static DefaultTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DefaultTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnamepublic static final DefaultTypes DUMMY_EVENT
public static DefaultTypes[] values()
for (DefaultTypes c : DefaultTypes.values()) System.out.println(c);
public static DefaultTypes 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–2015 JBoss by Red Hat. All rights reserved.