public enum UserListUploadStatus extends Enum<UserListUploadStatus>
Java class for UserListUploadStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="UserListUploadStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="IN_PROCESS"/>
<enumeration value="SUCCESS"/>
<enumeration value="FAILURE"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FAILURE
The upload/remove-all operation of this UserList has failed.
|
IN_PROCESS
The upload/remove-all operation of this UserList is still in process.
|
SUCCESS
The upload/remove-all operation of this UserList has succeeded.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static UserListUploadStatus |
fromValue(String v) |
String |
value() |
static UserListUploadStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserListUploadStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserListUploadStatus UNKNOWN
public static final UserListUploadStatus IN_PROCESS
public static final UserListUploadStatus SUCCESS
public static final UserListUploadStatus FAILURE
public static UserListUploadStatus[] values()
for (UserListUploadStatus c : UserListUploadStatus.values()) System.out.println(c);
public static UserListUploadStatus 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 value()
public static UserListUploadStatus fromValue(String v)
Copyright © 2023. All rights reserved.