Skip navigation links

Oracle Communications Converged Application Server Java API Reference
5.1

E36938-01


com.oracle.sft.api
Enum Warning

java.lang.Object
  extended by java.lang.Enum<Warning>
      extended by com.oracle.sft.api.Warning

All Implemented Interfaces:
Serializable, Comparable<Warning>

public enum Warning
extends Enum<Warning>

Warn-text recommended by RFC3261 for Warning header.


Enum Constant Summary
ATTRIBUTE_NOT_UNDERSTOOD
          One or more of the media attributes in the session description are not supported.
INCOMPATIBLE_BANDWIDTH_UNITS
          One or more bandwidth measurement units contained in the session description were not understood.
INCOMPATIBLE_MEDIA_FORMAT
          One or more media formats contained in the session description are not available.
INCOMPATIBLE_NETWORK_ADDRESS_FORMATS
          One or more network address formats contained in the session description are not available.
INCOMPATIBLE_NETWORK_PROTOCOL
          One or more network protocols contained in the session description are not available.
INCOMPATIBLE_TRANSPORT_PROTOCOL
          One or more transport protocols described in the session description are not available.
INSUFFICIENT_BANDWIDTH
          The bandwidth specified in the session description or defined by the media exceeds that known to be available.
MEDIA_TYPE_NOT_AVAILABLE
          One or more media types contained in the session description are not available.
MISCELLANEOUS_WARNING
          The warning text can include arbitrary information to be presented to a human user or logged.
MULTICAST_NOT_AVAILABLE
          The site where the user is located does not support multicast.
SESSION_DESCRIPTION_PARAMETER_NOT_UNDERSTOOD
          A parameter other than those listed above was not understood.
UNICAST_NOT_AVAILABLE
          The site where the user is located does not support unicast communication (usually due to the presence of a firewall).

 

Method Summary
static Warning valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Warning[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

INCOMPATIBLE_NETWORK_PROTOCOL

public static final Warning INCOMPATIBLE_NETWORK_PROTOCOL
One or more network protocols contained in the session description are not available.

INCOMPATIBLE_NETWORK_ADDRESS_FORMATS

public static final Warning INCOMPATIBLE_NETWORK_ADDRESS_FORMATS
One or more network address formats contained in the session description are not available.

INCOMPATIBLE_TRANSPORT_PROTOCOL

public static final Warning INCOMPATIBLE_TRANSPORT_PROTOCOL
One or more transport protocols described in the session description are not available.

INCOMPATIBLE_BANDWIDTH_UNITS

public static final Warning INCOMPATIBLE_BANDWIDTH_UNITS
One or more bandwidth measurement units contained in the session description were not understood.

MEDIA_TYPE_NOT_AVAILABLE

public static final Warning MEDIA_TYPE_NOT_AVAILABLE
One or more media types contained in the session description are not available.

INCOMPATIBLE_MEDIA_FORMAT

public static final Warning INCOMPATIBLE_MEDIA_FORMAT
One or more media formats contained in the session description are not available.

ATTRIBUTE_NOT_UNDERSTOOD

public static final Warning ATTRIBUTE_NOT_UNDERSTOOD
One or more of the media attributes in the session description are not supported.

SESSION_DESCRIPTION_PARAMETER_NOT_UNDERSTOOD

public static final Warning SESSION_DESCRIPTION_PARAMETER_NOT_UNDERSTOOD
A parameter other than those listed above was not understood.

MULTICAST_NOT_AVAILABLE

public static final Warning MULTICAST_NOT_AVAILABLE
The site where the user is located does not support multicast.

UNICAST_NOT_AVAILABLE

public static final Warning UNICAST_NOT_AVAILABLE
The site where the user is located does not support unicast communication (usually due to the presence of a firewall).

INSUFFICIENT_BANDWIDTH

public static final Warning INSUFFICIENT_BANDWIDTH
The bandwidth specified in the session description or defined by the media exceeds that known to be available.

MISCELLANEOUS_WARNING

public static final Warning MISCELLANEOUS_WARNING
The warning text can include arbitrary information to be presented to a human user or logged. A system receiving this warning MUST NOT take any automated action.

Method Detail

values

public static Warning[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Warning c : Warning.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Warning valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

Skip navigation links

Oracle Communications Converged Application Server Java API Reference
5.1

E36938-01


Copyright © 2012 Oracle Corporation. All Rights Reserved.