Avaya Conferencing Provider API

com.avaya.conferencing.api.acp.control
Enum PropertyType

java.lang.Object
  extended by java.lang.Enum<PropertyType>
      extended by com.avaya.conferencing.api.acp.control.PropertyType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PropertyType>

public enum PropertyType
extends java.lang.Enum<PropertyType>

Various types of properties.

Since:
5.1.0.0.29

Enum Constant Summary
DESCRIPTOR
          Properties that describe the ConferencingObject instance and cannot be modified thorugh this API.
MUTABLE_DESCRIPTOR
          Properties that describe the ConferencingObject instance and can be modified thorugh this API.
MUTABLE_STATE
          Properties that describe the state of the ConferencingObject and can be modified thorugh this API.
STATE
          Properties that describe the state of the ConferencingObject and cannot be modified thorugh this API.
 
Method Summary
 boolean isDescriptor()
          Returns true if this PropertyType represents information describing a ConferencingObject.
 boolean isMutable()
          Returns true if this PropertyType can be changed using this API.
 boolean isState()
          Returns true if this PropertyType represents the state of a ConferencingObject.
static PropertyType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PropertyType[] 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

STATE

public static final PropertyType STATE
Properties that describe the state of the ConferencingObject and cannot be modified thorugh this API.

Since:
5.1.0.0.29

MUTABLE_STATE

public static final PropertyType MUTABLE_STATE
Properties that describe the state of the ConferencingObject and can be modified thorugh this API.

Since:
5.1.0.0.29

DESCRIPTOR

public static final PropertyType DESCRIPTOR
Properties that describe the ConferencingObject instance and cannot be modified thorugh this API.

Since:
5.1.0.0.29

MUTABLE_DESCRIPTOR

public static final PropertyType MUTABLE_DESCRIPTOR
Properties that describe the ConferencingObject instance and can be modified thorugh this API.

Since:
5.1.0.0.29
Method Detail

values

public static PropertyType[] 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 (PropertyType c : PropertyType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PropertyType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

isMutable

public boolean isMutable()
Returns true if this PropertyType can be changed using this API.

Returns:
true if this PropertyType can be changed using this API.
Since:
5.1.0.0.29

isState

public boolean isState()
Returns true if this PropertyType represents the state of a ConferencingObject.

Returns:
true if this PropertyType represents the state of a ConferencingObject.
Since:
5.1.0.0.29

isDescriptor

public boolean isDescriptor()
Returns true if this PropertyType represents information describing a ConferencingObject.

Returns:
true if this PropertyType represents information describing a ConferencingObject.
Since:
5.1.0.0.29

Avaya Conferencing Provider API

Copyright © 2008-2009 Avaya. All Rights Reserved.