public enum InvoiceReimbursementState extends Enum<InvoiceReimbursementState>
| Enum Constant and Description |
|---|
DISCARDED |
MANUAL_REVIEW |
PENDING |
PROCESSED |
PROCESSING |
| Modifier and Type | Method and Description |
|---|---|
static InvoiceReimbursementState |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static InvoiceReimbursementState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvoiceReimbursementState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvoiceReimbursementState PENDING
public static final InvoiceReimbursementState MANUAL_REVIEW
public static final InvoiceReimbursementState PROCESSING
public static final InvoiceReimbursementState PROCESSED
public static final InvoiceReimbursementState DISCARDED
public static InvoiceReimbursementState[] values()
for (InvoiceReimbursementState c : InvoiceReimbursementState.values()) System.out.println(c);
public static InvoiceReimbursementState 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<InvoiceReimbursementState>public static InvoiceReimbursementState fromValue(String text)
Copyright © 2022. All rights reserved.