com.ibm.portal.cp
Enum CollaborativeResource.Scope

java.lang.Object
  extended by java.lang.Enum<CollaborativeResource.Scope>
      extended by com.ibm.portal.cp.CollaborativeResource.Scope
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CollaborativeResource.Scope>
Enclosing interface:
CollaborativeResource

Deprecated. This will be removed soon without replacement.

public static enum CollaborativeResource.Scope
extends java.lang.Enum<CollaborativeResource.Scope>

Defines the scope of a collaborative resource


Enum Constant Summary
AUTHOR
          Deprecated. Collaborative resources with the AUTHOR scope are created through content authors, e.
COLLABORATIVE
          Deprecated. Scope with classical meaning of collaborative: used to share information, resources etc.
PRIVATE
          Deprecated. Collaborative resources with PRIVATE scope are visible for the owner of the resource only.
 
Method Summary
static CollaborativeResource.Scope valueOf(java.lang.String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static CollaborativeResource.Scope[] values()
          Deprecated. 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

PRIVATE

public static final CollaborativeResource.Scope PRIVATE
Deprecated. 
Collaborative resources with PRIVATE scope are visible for the owner of the resource only.


COLLABORATIVE

public static final CollaborativeResource.Scope COLLABORATIVE
Deprecated. 
Scope with classical meaning of collaborative: used to share information, resources etc. with other persons.


AUTHOR

public static final CollaborativeResource.Scope AUTHOR
Deprecated. 
Collaborative resources with the AUTHOR scope are created through content authors, e. g. a Tag might be created by the author of a WCM item when the item is created.

Method Detail

values

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

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

valueOf

public static CollaborativeResource.Scope valueOf(java.lang.String name)
Deprecated. 
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