public enum SubsidyStatus extends Enum<SubsidyStatus>
| Enum Constant and Description |
|---|
ACCEPTED
受理成功
|
FAIL
补差付款失败
|
FULL_RETURN
补差全额回退
|
PARTIAL_RETURN
补差部分回退
|
RETURNING
补差回退中
|
SUCCESS
补差补款成功
|
| Modifier and Type | Method and Description |
|---|---|
static SubsidyStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubsidyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubsidyStatus ACCEPTED
public static final SubsidyStatus SUCCESS
public static final SubsidyStatus FAIL
public static final SubsidyStatus RETURNING
public static final SubsidyStatus PARTIAL_RETURN
public static final SubsidyStatus FULL_RETURN
public static SubsidyStatus[] values()
for (SubsidyStatus c : SubsidyStatus.values()) System.out.println(c);
public static SubsidyStatus 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 © 2023. All rights reserved.