Copyright© 2008-2025 Sitevision AB, all rights reserved.
@Requireable(value="CollaborationGroupState") public enum CollaborationGroupState extends Enum<CollaborationGroupState>
Example of how to get the ACTIVE state:
#set ($instanceCreatorUtil = $sitevisionUtils.instanceCreatorUtil)
#set ($enumClassName = 'senselogic.sitevision.api.collaboration.CollaborationGroupState')
#set ($activeEnum = $instanceCreatorUtil.getEnumInstance($enumClassName, 'ACTIVE'))
var activeEnum = require('CollaborationGroupState.ACTIVE');
| Enum Constant and Description |
|---|
ACTIVE
The active state.
|
INACTIVE
The inactive state.
|
| Modifier and Type | Method and Description |
|---|---|
static CollaborationGroupState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollaborationGroupState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Requireable(value="CollaborationGroupState.ACTIVE") public static final CollaborationGroupState ACTIVE
An active collaboration group is in use. Members can be added/removed and content can be added/removed.
@Requireable(value="CollaborationGroupState.INACTIVE") public static final CollaborationGroupState INACTIVE
An inactive collaboration group is locked/archived. Members can not be added/removed and content can not be added/removed.
public static CollaborationGroupState[] values()
for (CollaborationGroupState c : CollaborationGroupState.values()) System.out.println(c);
public static CollaborationGroupState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullSitevision - Content Management Made Easy
Sitevision is an advanced Java enterprise portal product that implements Java Content Repository (JSR 283).
Copyright© 2008-2025 Sitevision AB, all rights reserved.