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