public enum ListState extends Enum<ListState>
Enum Constant and Description |
---|
ACTIVE |
ARCHIVED |
UNKNOWN_TO_SDK_VERSION |
Modifier and Type | Method and Description |
---|---|
static ListState |
fromValue(String text) |
Object |
getValue() |
String |
toString() |
static ListState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListState ACTIVE
public static final ListState ARCHIVED
public static final ListState UNKNOWN_TO_SDK_VERSION
public static ListState[] values()
for (ListState c : ListState.values()) System.out.println(c);
public static ListState 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 Object getValue()
Copyright © 2023. All rights reserved.