public enum QuoteStatusCodes extends Enum<QuoteStatusCodes>
| Enum Constant and Description |
|---|
ACCEPTED |
DECLINED |
DRAFT |
INVOICED |
SENT |
| Modifier and Type | Method and Description |
|---|---|
static QuoteStatusCodes |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static QuoteStatusCodes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuoteStatusCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuoteStatusCodes DRAFT
public static final QuoteStatusCodes SENT
public static final QuoteStatusCodes DECLINED
public static final QuoteStatusCodes ACCEPTED
public static final QuoteStatusCodes INVOICED
public static QuoteStatusCodes[] values()
for (QuoteStatusCodes c : QuoteStatusCodes.values()) System.out.println(c);
public static QuoteStatusCodes 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<QuoteStatusCodes>public static QuoteStatusCodes fromValue(String value)
Copyright © 2020. All rights reserved.