public enum ObjectGroup extends Enum<ObjectGroup>
| Enum Constant and Description |
|---|
ACCOUNT |
BANKTRANSACTION |
CONTACT |
CREDITNOTE |
INVOICE |
ITEM |
MANUALJOURNAL |
OVERPAYMENT |
PAYMENT |
PREPAYMENT |
RECEIPT |
| Modifier and Type | Method and Description |
|---|---|
static ObjectGroup |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static ObjectGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectGroup ACCOUNT
public static final ObjectGroup BANKTRANSACTION
public static final ObjectGroup CONTACT
public static final ObjectGroup CREDITNOTE
public static final ObjectGroup INVOICE
public static final ObjectGroup ITEM
public static final ObjectGroup MANUALJOURNAL
public static final ObjectGroup OVERPAYMENT
public static final ObjectGroup PAYMENT
public static final ObjectGroup PREPAYMENT
public static final ObjectGroup RECEIPT
public static ObjectGroup[] values()
for (ObjectGroup c : ObjectGroup.values()) System.out.println(c);
public static ObjectGroup 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<ObjectGroup>public static ObjectGroup fromValue(String text)
Copyright © 2019. All rights reserved.