public enum ExtendedTypes extends Enum<ExtendedTypes> implements SocialEventType
| Enum Constant and Description |
|---|
NEW_REPOSITORY_EVENT |
| Modifier and Type | Method and Description |
|---|---|
static ExtendedTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtendedTypes[] |
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 ExtendedTypes NEW_REPOSITORY_EVENT
public static ExtendedTypes[] values()
for (ExtendedTypes c : ExtendedTypes.values()) System.out.println(c);
public static ExtendedTypes 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 © 2012–2019 JBoss by Red Hat. All rights reserved.