public enum AiRequestLogStatus extends java.lang.Enum<AiRequestLogStatus> implements EnumConverter<AiRequestLogStatus>
| Modifier and Type | Method and Description |
|---|---|
static AiRequestLogStatus |
from(java.lang.String value) |
java.lang.String |
to(AiRequestLogStatus value) |
static AiRequestLogStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AiRequestLogStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AiRequestLogStatus PENDING
public static final AiRequestLogStatus SUCCESS
public static final AiRequestLogStatus ERROR
public static final AiRequestLogStatus TIMEOUT
public static AiRequestLogStatus[] values()
for (AiRequestLogStatus c : AiRequestLogStatus.values()) System.out.println(c);
public static AiRequestLogStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static AiRequestLogStatus from(java.lang.String value)
public java.lang.String to(AiRequestLogStatus value)
to in interface EnumConverter<AiRequestLogStatus>