public enum PKEventType extends Enum<PKEventType>
| Enum Constant and Description |
|---|
PKEventTypeConference |
PKEventTypeConvention |
PKEventTypeGeneric |
PKEventTypeLivePerformance |
PKEventTypeMovie |
PKEventTypeSocialGathering |
PKEventTypeSports |
PKEventTypeWorkshop |
| Modifier and Type | Method and Description |
|---|---|
static PKEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PKEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PKEventType PKEventTypeGeneric
public static final PKEventType PKEventTypeLivePerformance
public static final PKEventType PKEventTypeMovie
public static final PKEventType PKEventTypeSports
public static final PKEventType PKEventTypeConference
public static final PKEventType PKEventTypeConvention
public static final PKEventType PKEventTypeWorkshop
public static final PKEventType PKEventTypeSocialGathering
public static PKEventType[] values()
for (PKEventType c : PKEventType.values()) System.out.println(c);
public static PKEventType 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–2022. All rights reserved.