public enum MessageUploadStatus extends java.lang.Enum<MessageUploadStatus>
| Enum Constant and Description |
|---|
FAILED
A user message that failed to upload.
|
NOT_USER_MESSAGE
A message that did not originate from the current user.
|
SENT
A user message that was successfully uploaded.
|
UNSENT
A user message that has not yet finished uploading.
|
| Modifier and Type | Method and Description |
|---|---|
static MessageUploadStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageUploadStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageUploadStatus UNSENT
public static final MessageUploadStatus FAILED
public static final MessageUploadStatus SENT
public static final MessageUploadStatus NOT_USER_MESSAGE
public static MessageUploadStatus[] values()
for (MessageUploadStatus c : MessageUploadStatus.values()) System.out.println(c);
public static MessageUploadStatus 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 null