Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter Portal
11g Release 1 (11.1.1.7.0)
E15995-06


oracle.webcenter.spaces.query
Enum SpacesQueryPopulation.PopulationStripe

java.lang.Object
  extended by java.lang.Enum<SpacesQueryPopulation.PopulationStripe>
      extended by oracle.webcenter.spaces.query.SpacesQueryPopulation.PopulationStripe

All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SpacesQueryPopulation.PopulationStripe>
Enclosing class:
SpacesQueryPopulation

public static enum SpacesQueryPopulation.PopulationStripe
extends java.lang.Enum<SpacesQueryPopulation.PopulationStripe>

Represents a class of spaces that can be used while defining a population to query spaces from.

Use SpacesQueryPopulation.createUnionPopulation(java.util.Collection<oracle.webcenter.spaces.query.SpacesQueryPopulation.PopulationStripe>) to create a population as a union of one or more such classes of spaces.


Enum Constant Summary
ALL_QUERIABLE
          The class of all spaces that a user can be aware of.
ALLUSER_ACCESSIBLE
           The class of spaces that are accessible by all authenticated users.
DISCOVERABLE
           The class of all discoverable spaces.
PUBLIC_ACCESSIBLE
           The class of all publicly-accessible spaces.
USER_JOINED
           The class of spaces that a user is a member of, either directly or via group (enterprise role) membership.
USER_MODERATED
           The class of all spaces that a user is a moderator of
EL : #{spaceContext.spacesQuery.unionOf['USER_MODERATED'].listSpaces}

 

Method Summary
static SpacesQueryPopulation.PopulationStripe valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SpacesQueryPopulation.PopulationStripe[] 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

ALL_QUERIABLE

public static final SpacesQueryPopulation.PopulationStripe ALL_QUERIABLE
The class of all spaces that a user can be aware of.

This includes spaces is a member of, directly or via group (enterprise role) membership, discoverable spaces, publicly-accessible spaces, and (if the user is authenticated) spaces accessible by all authenticated users.
EL : #{spaceContext.spacesQuery.unionOf['ALL_QUERIABLE'].listSpaces}


DISCOVERABLE

public static final SpacesQueryPopulation.PopulationStripe DISCOVERABLE

The class of all discoverable spaces.
EL : #{spaceContext.spacesQuery.unionOf['DISCOVERABLE'].listSpaces}


PUBLIC_ACCESSIBLE

public static final SpacesQueryPopulation.PopulationStripe PUBLIC_ACCESSIBLE

The class of all publicly-accessible spaces.
EL : #{spaceContext.spacesQuery.unionOf['PUBLIC_ACCESSIBLE'].listSpaces}


ALLUSER_ACCESSIBLE

public static final SpacesQueryPopulation.PopulationStripe ALLUSER_ACCESSIBLE

The class of spaces that are accessible by all authenticated users.
EL : #{spaceContext.spacesQuery.unionOf['ALLUSER_ACCESSIBLE'].listSpaces}


USER_JOINED

public static final SpacesQueryPopulation.PopulationStripe USER_JOINED

The class of spaces that a user is a member of, either directly or via group (enterprise role) membership.
EL : #{spaceContext.spacesQuery.unionOf['USER_JOINED'].listSpaces}


USER_MODERATED

public static final SpacesQueryPopulation.PopulationStripe USER_MODERATED

The class of all spaces that a user is a moderator of
EL : #{spaceContext.spacesQuery.unionOf['USER_MODERATED'].listSpaces}

Method Detail

values

public static SpacesQueryPopulation.PopulationStripe[] 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 (SpacesQueryPopulation.PopulationStripe c : SpacesQueryPopulation.PopulationStripe.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SpacesQueryPopulation.PopulationStripe 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

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle WebCenter Portal
11g Release 1 (11.1.1.7.0)
E15995-06


Copyright © 2009, 2013, Oracle and/or its affiliates. All rights reserved.