public enum EventAttendeeResponse extends Enum<EventAttendeeResponse>
| Enum Constant and Description |
|---|
ACCEPTED |
DECLINED |
NEEDS_ACTION |
TENTATIVE |
| Modifier and Type | Method and Description |
|---|---|
static EventAttendeeResponse |
fromValue(String value) |
String |
getValue() |
static EventAttendeeResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventAttendeeResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventAttendeeResponse NEEDS_ACTION
public static final EventAttendeeResponse ACCEPTED
public static final EventAttendeeResponse DECLINED
public static final EventAttendeeResponse TENTATIVE
public static EventAttendeeResponse[] values()
for (EventAttendeeResponse c : EventAttendeeResponse.values()) System.out.println(c);
public static EventAttendeeResponse 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 nullpublic String getValue()
public static EventAttendeeResponse fromValue(String value)
Copyright © 2003–2021 eXo Platform SAS. All rights reserved.