public static enum TopicList.Status extends Enum<TopicList.Status>
| Enum Constant and Description |
|---|
CREATED |
FAILURE |
NOT_CREATED |
| Modifier and Type | Method and Description |
|---|---|
static TopicList.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TopicList.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TopicList.Status NOT_CREATED
public static final TopicList.Status CREATED
public static final TopicList.Status FAILURE
public static TopicList.Status[] values()
for (TopicList.Status c : TopicList.Status.values()) System.out.println(c);
public static TopicList.Status 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 nullCopyright © 2019 Bloomberg L.P.. All rights reserved.