public static enum Accounting.AccountingRecordType extends Enum<Accounting.AccountingRecordType>
| Enum Constant and Description |
|---|
EVENT_RECORD
An Accounting Event Record is used to indicate that a one-time
event has occurred (meaning that the start and end of the event
are simultaneous).
|
INTERIM_RECORD
An Interim Accounting Record contains cumulative accounting
information for an existing accounting session.
|
START_RECORD
An Accounting Start, Interim, and Stop Records are used to
indicate that a service of a measurable length has been given.
|
STOP_RECORD
An Accounting Stop Record is sent to terminate an accounting
session and contains cumulative accounting information relevant to
the existing session.
|
| Modifier and Type | Method and Description |
|---|---|
static Accounting.AccountingRecordType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Accounting.AccountingRecordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Accounting.AccountingRecordType EVENT_RECORD
public static final Accounting.AccountingRecordType START_RECORD
public static final Accounting.AccountingRecordType INTERIM_RECORD
public static final Accounting.AccountingRecordType STOP_RECORD
public static Accounting.AccountingRecordType[] values()
for (Accounting.AccountingRecordType c : Accounting.AccountingRecordType.values()) System.out.println(c);
public static Accounting.AccountingRecordType 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 nullCopyright © 2014. All Rights Reserved.