Avaya Conferencing Provider API

com.avaya.conferencing.api.acp.control.operations
Enum Operation.Impact

java.lang.Object
  extended by java.lang.Enum<Operation.Impact>
      extended by com.avaya.conferencing.api.acp.control.operations.Operation.Impact
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Operation.Impact>
Enclosing interface:
Operation<RESULT,IMPL extends Operation<RESULT,IMPL>>

public static enum Operation.Impact
extends java.lang.Enum<Operation.Impact>

Describes the impact of an operation.

Since:
5.1.0.0.29

Enum Constant Summary
ACTION
          Indicates that the operation is write-like, and would modify the target in some way, typically by writing some value or changing a configuration.
ACTION_INFO
          Indicates that the operation is both read-like and write-like.
INFO
          Indicates that the operation is read-like, it returns information.
UNKNOWN
          Indicates that the operation has an "unknown" nature.
 
Method Summary
static Operation.Impact valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Operation.Impact[] 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

ACTION

public static final Operation.Impact ACTION
Indicates that the operation is write-like, and would modify the target in some way, typically by writing some value or changing a configuration.


ACTION_INFO

public static final Operation.Impact ACTION_INFO
Indicates that the operation is both read-like and write-like.


INFO

public static final Operation.Impact INFO
Indicates that the operation is read-like, it returns information.


UNKNOWN

public static final Operation.Impact UNKNOWN
Indicates that the operation has an "unknown" nature.

Method Detail

values

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

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

valueOf

public static Operation.Impact 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

Avaya Conferencing Provider API

Copyright © 2008-2009 Avaya. All Rights Reserved.