public enum OrdersErrorCode extends Enum<OrdersErrorCode>
| 枚举常量和说明 |
|---|
leaseEndAtIsEmpty
租赁结束时间为空
|
leaseStartAtIsEmpty
租赁起始时间为空
|
lesseeIdIsEmpty
承租人ID为空
|
lesseeMessageIsEmpty
承租人留言为空
|
lesseeServiceFeeIsEmpty
承租人服务费为空
|
lessorIdIsEmpty
出租人ID为空
|
lessorServiceFeeIsEmpty
出租人服务费为空
|
positioningIsEmpty
订单提交城市(承租人当前定位城市)为空
|
priceIsEmpty
订单价格为空
|
serviceContentIsEmpty
服务内容为空
|
totalPriceIsEmpty
总支付金额为空
|
| 限定符和类型 | 方法和说明 |
|---|---|
int |
getValue() |
static OrdersErrorCode |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static OrdersErrorCode[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final OrdersErrorCode lesseeIdIsEmpty
public static final OrdersErrorCode lessorIdIsEmpty
public static final OrdersErrorCode leaseStartAtIsEmpty
public static final OrdersErrorCode leaseEndAtIsEmpty
public static final OrdersErrorCode priceIsEmpty
public static final OrdersErrorCode totalPriceIsEmpty
public static final OrdersErrorCode lesseeMessageIsEmpty
public static final OrdersErrorCode positioningIsEmpty
public static final OrdersErrorCode lesseeServiceFeeIsEmpty
public static final OrdersErrorCode lessorServiceFeeIsEmpty
public static final OrdersErrorCode serviceContentIsEmpty
public static OrdersErrorCode[] values()
for (OrdersErrorCode c : OrdersErrorCode.values()) System.out.println(c);
public static OrdersErrorCode valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public int getValue()
Copyright © 2018. All rights reserved.