public enum SipResponseCode extends Enum<SipResponseCode>
| Enum Constant and Description |
|---|
ADDRESS_INCOMPLETE |
BAD_GATEWAY |
BUSY_HERE |
FORBIDDEN |
GONE |
INTERNAL_SERVER_ERROR |
NOT_ACCEPTABLE_HERE |
NOT_FOUND |
NOT_IMPLEMENTED |
OK |
REQUEST_TIMEOUT |
SERVICE_UNAVAILABLE |
TEMPORARILY_UNAVAILABLE |
| Modifier and Type | Method and Description |
|---|---|
static SipResponseCode |
forValue(Integer value) |
static SipResponseCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SipResponseCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SipResponseCode OK
public static final SipResponseCode FORBIDDEN
public static final SipResponseCode NOT_FOUND
public static final SipResponseCode REQUEST_TIMEOUT
public static final SipResponseCode GONE
public static final SipResponseCode TEMPORARILY_UNAVAILABLE
public static final SipResponseCode ADDRESS_INCOMPLETE
public static final SipResponseCode BUSY_HERE
public static final SipResponseCode NOT_ACCEPTABLE_HERE
public static final SipResponseCode INTERNAL_SERVER_ERROR
public static final SipResponseCode NOT_IMPLEMENTED
public static final SipResponseCode BAD_GATEWAY
public static final SipResponseCode SERVICE_UNAVAILABLE
public static SipResponseCode[] values()
for (SipResponseCode c : SipResponseCode.values()) System.out.println(c);
public static SipResponseCode 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 SipResponseCode forValue(Integer value)
Copyright © 2024. All rights reserved.