|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Scope> com.ibm.portal.cp.Scope
public enum Scope
The Scope
enumeration describes the visibility and type of
collaboration of tag spaces or rating spaces. Examples:
for constants of query parameter keys
and values of the scope enumeration.
Enum Constant Summary | |
---|---|
COMMUNITY
The community scope. |
|
PERSONAL_PRIVATE
The personal private scope. |
|
PERSONAL_PUBLIC
The personal public scope. |
Method Summary | |
---|---|
static Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Scope[] |
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 |
---|
public static final Scope COMMUNITY
public static final Scope PERSONAL_PUBLIC
public static final Scope PERSONAL_PRIVATE
Method Detail |
---|
public static Scope[] values()
for (Scope c : Scope.values()) System.out.println(c);
public static Scope valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |