public static enum Accounting.AccountingRealtimeRequired extends Enum<Accounting.AccountingRealtimeRequired>
| Enum Constant and Description |
|---|
DELIVER_AND_GRANT
The AVP with Value field set to DELIVER_AND_GRANT means that the
service MUST only be granted as long as there is a connection to
an accounting server.
|
GRAND_AND_LOSE
The AVP with Value field set to GRANT_AND_LOSE means that service
SHOULD be granted even if the records can not be delivered or
stored.
|
GRANT_AND_STORE
The AVP with Value field set to GRANT_AND_STORE means that service
SHOULD be granted if there is a connection, or as long as records
can still be stored as described in Section 9.4.
|
| Modifier and Type | Method and Description |
|---|---|
static Accounting.AccountingRealtimeRequired |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Accounting.AccountingRealtimeRequired[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Accounting.AccountingRealtimeRequired DELIVER_AND_GRANT
public static final Accounting.AccountingRealtimeRequired GRANT_AND_STORE
public static final Accounting.AccountingRealtimeRequired GRAND_AND_LOSE
public static Accounting.AccountingRealtimeRequired[] values()
for (Accounting.AccountingRealtimeRequired c : Accounting.AccountingRealtimeRequired.values()) System.out.println(c);
public static Accounting.AccountingRealtimeRequired 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.