Enum SpaceMemberFilterListAccess.Type
- java.lang.Object
-
- java.lang.Enum<SpaceMemberFilterListAccess.Type>
-
- org.exoplatform.social.core.identity.SpaceMemberFilterListAccess.Type
-
- All Implemented Interfaces:
Serializable,Comparable<SpaceMemberFilterListAccess.Type>
- Enclosing class:
- SpaceMemberFilterListAccess
public static enum SpaceMemberFilterListAccess.Type extends Enum<SpaceMemberFilterListAccess.Type>
The connection list access Type Enum.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INVITEDGets a list of identities who are invited to join the spaceMANAGERGets a list of identities who are the leader ofMEMBERGets a list of identities who invited to connect to the provided identity and profile filterPENDINGGets a list of identities who are pending of membership approvalREDACTORGets a list of identities who are the redactor of
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SpaceMemberFilterListAccess.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static SpaceMemberFilterListAccess.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEMBER
public static final SpaceMemberFilterListAccess.Type MEMBER
Gets a list of identities who invited to connect to the provided identity and profile filter
-
MANAGER
public static final SpaceMemberFilterListAccess.Type MANAGER
Gets a list of identities who are the leader of
-
REDACTOR
public static final SpaceMemberFilterListAccess.Type REDACTOR
Gets a list of identities who are the redactor of
-
INVITED
public static final SpaceMemberFilterListAccess.Type INVITED
Gets a list of identities who are invited to join the space
-
PENDING
public static final SpaceMemberFilterListAccess.Type PENDING
Gets a list of identities who are pending of membership approval
-
-
Method Detail
-
values
public static SpaceMemberFilterListAccess.Type[] 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 (SpaceMemberFilterListAccess.Type c : SpaceMemberFilterListAccess.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpaceMemberFilterListAccess.Type valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-