public enum UserListClosingReason extends Enum<UserListClosingReason>
Java class for UserListClosingReason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="UserListClosingReason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="UNUSED_LIST"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
UNKNOWN
Used for return value only.
|
UNUSED_LIST
The userlist was closed because of not being used for over one year.
|
| Modifier and Type | Method and Description |
|---|---|
static UserListClosingReason |
fromValue(String v) |
String |
value() |
static UserListClosingReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserListClosingReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserListClosingReason UNKNOWN
public static final UserListClosingReason UNUSED_LIST
public static UserListClosingReason[] values()
for (UserListClosingReason c : UserListClosingReason.values()) System.out.println(c);
public static UserListClosingReason 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 UserListClosingReason fromValue(String v)
Copyright © 2023. All rights reserved.