public enum MessageUploadStatus extends java.lang.Enum<MessageUploadStatus>
Enum Constant and Description |
---|
Failed
A user message that failed to upload.
|
NotUserMessage
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 NotUserMessage
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