public enum MethodStatus extends Enum<MethodStatus>
| Enum Constant and Description |
|---|
ACTIVATED |
NULL |
PENDING_BOARDING |
PENDING_EXTERNAL |
PENDING_REVIEW |
REJECTED |
| Modifier and Type | Method and Description |
|---|---|
String |
getJsonValue() |
static MethodStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MethodStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodStatus ACTIVATED
public static final MethodStatus PENDING_BOARDING
public static final MethodStatus PENDING_REVIEW
public static final MethodStatus PENDING_EXTERNAL
public static final MethodStatus REJECTED
public static final MethodStatus NULL
public static MethodStatus[] values()
for (MethodStatus c : MethodStatus.values()) System.out.println(c);
public static MethodStatus 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 getJsonValue()
Copyright © 2022. All rights reserved.