public static enum Invoice.TypeEnum extends Enum<Invoice.TypeEnum>
| Enum Constant and Description |
|---|
ACCPAY |
ACCPAYCREDIT |
ACCREC |
ACCRECCREDIT |
APOVERPAYMENT |
APPREPAYMENT |
AROVERPAYMENT |
ARPREPAYMENT |
| Modifier and Type | Method and Description |
|---|---|
static Invoice.TypeEnum |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static Invoice.TypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Invoice.TypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Invoice.TypeEnum ACCPAY
public static final Invoice.TypeEnum ACCPAYCREDIT
public static final Invoice.TypeEnum APOVERPAYMENT
public static final Invoice.TypeEnum APPREPAYMENT
public static final Invoice.TypeEnum ACCREC
public static final Invoice.TypeEnum ACCRECCREDIT
public static final Invoice.TypeEnum AROVERPAYMENT
public static final Invoice.TypeEnum ARPREPAYMENT
public static Invoice.TypeEnum[] values()
for (Invoice.TypeEnum c : Invoice.TypeEnum.values()) System.out.println(c);
public static Invoice.TypeEnum 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 getValue()
public String toString()
toString in class Enum<Invoice.TypeEnum>public static Invoice.TypeEnum fromValue(String value)
Copyright © 2020. All rights reserved.