public static enum SpacesQueryPopulation.PopulationStripe extends java.lang.Enum<SpacesQueryPopulation.PopulationStripe>
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 and Description |
---|
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}
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final SpacesQueryPopulation.PopulationStripe ALL_QUERIABLE
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}
public static final SpacesQueryPopulation.PopulationStripe DISCOVERABLE
The class of all discoverable spaces.
EL : #{spaceContext.spacesQuery.unionOf['DISCOVERABLE'].listSpaces}
public static final SpacesQueryPopulation.PopulationStripe PUBLIC_ACCESSIBLE
The class of all publicly-accessible spaces.
EL : #{spaceContext.spacesQuery.unionOf['PUBLIC_ACCESSIBLE'].listSpaces}
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}
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}
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}
public static SpacesQueryPopulation.PopulationStripe[] values()
for (SpacesQueryPopulation.PopulationStripe c : SpacesQueryPopulation.PopulationStripe.values()) System.out.println(c);
public static SpacesQueryPopulation.PopulationStripe 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 namejava.lang.NullPointerException
- if the argument is null