public enum AttendeeStatus extends java.lang.Enum<AttendeeStatus>
Enum Constant and Description |
---|
ACCEPT |
DECLINE |
NOT_RESPONDED |
RESPONSE_UNKNOWN |
TENTATIVE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
asIntString() |
static AttendeeStatus |
fromInt(int value) |
static AttendeeStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttendeeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttendeeStatus RESPONSE_UNKNOWN
public static final AttendeeStatus TENTATIVE
public static final AttendeeStatus ACCEPT
public static final AttendeeStatus DECLINE
public static final AttendeeStatus NOT_RESPONDED
public static AttendeeStatus[] values()
for (AttendeeStatus c : AttendeeStatus.values()) System.out.println(c);
public static AttendeeStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static AttendeeStatus fromInt(int value)
public java.lang.String asIntString()
Copyright © 2021. All Rights Reserved.