public enum CCUnavailableNetworkResource extends Enum<CCUnavailableNetworkResource>
UnavailableNetworkResource ::=
ENUMERATED {
unavailableResources(0),
componentFailure(1),
basicCallProcessingException(2),
resourceStatusFailure(3),
endUserFailure(4)
}
Used as parameter type by CCErrors.systemFailure.
| Enum Constant and Description |
|---|
basicCallProcessingException |
componentFailure |
endUserFailure |
resourceStatusFailure |
unavailableResources |
| Modifier and Type | Method and Description |
|---|---|
static CCUnavailableNetworkResource |
fromValue(int value)
Returns the enumeration constant for a given ASN.1 encoded value.
|
int |
intValue()
Gets the integer ASN.1 encoded value of this enumeration constant.
|
static CCUnavailableNetworkResource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CCUnavailableNetworkResource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CCUnavailableNetworkResource unavailableResources
public static final CCUnavailableNetworkResource componentFailure
public static final CCUnavailableNetworkResource basicCallProcessingException
public static final CCUnavailableNetworkResource resourceStatusFailure
public static final CCUnavailableNetworkResource endUserFailure
public static CCUnavailableNetworkResource[] values()
for (CCUnavailableNetworkResource c : CCUnavailableNetworkResource.values()) System.out.println(c);
public static CCUnavailableNetworkResource 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 static CCUnavailableNetworkResource fromValue(int value)
value - integer ASN.1 encoded valuepublic int intValue()