public enum InvoiceItemOrder extends Enum<InvoiceItemOrder>
| Enum Constant and Description |
|---|
ITEM_NO_ORDER
按照明细顺序开票
|
MINIMUM_INVOICES
最少发票张数
|
| Modifier and Type | Method and Description |
|---|---|
static InvoiceItemOrder |
fromValue(String value) |
String |
value() |
static InvoiceItemOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvoiceItemOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvoiceItemOrder ITEM_NO_ORDER
public static final InvoiceItemOrder MINIMUM_INVOICES
public static InvoiceItemOrder[] values()
for (InvoiceItemOrder c : InvoiceItemOrder.values()) System.out.println(c);
public static InvoiceItemOrder 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 value()
public static InvoiceItemOrder fromValue(String value)
Copyright © 2020. All rights reserved.