public enum MeetingResponseStatus extends java.lang.Enum<MeetingResponseStatus>
| Enum Constant and Description |
|---|
INVALID_MEETING_REQUEST
The client has sent a malformed or invalid item
|
SERVER_ERROR
An error occurred on the server
|
SUCCESS
Success
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
asXmlValue() |
static MeetingResponseStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeetingResponseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeetingResponseStatus SUCCESS
public static final MeetingResponseStatus INVALID_MEETING_REQUEST
public static final MeetingResponseStatus SERVER_ERROR
public static MeetingResponseStatus[] values()
for (MeetingResponseStatus c : MeetingResponseStatus.values()) System.out.println(c);
public static MeetingResponseStatus 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 java.lang.String asXmlValue()
Copyright © 2021. All Rights Reserved.