public enum RefundStatus extends Enum<RefundStatus>
public static final RefundStatus ABNORMAL
public static final RefundStatus CLOSED
public static final RefundStatus SUCCESS
public static RefundStatus[] values()
for (RefundStatus c : RefundStatus.values()) System.out.println(c);
public static RefundStatus valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2021. All rights reserved.