Enum Class ConnectionListAccess.Type
java.lang.Object
java.lang.Enum<ConnectionListAccess.Type>
org.exoplatform.social.core.identity.ConnectionListAccess.Type
- All Implemented Interfaces:
Serializable,Comparable<ConnectionListAccess.Type>,Constable
- Enclosing class:
ConnectionListAccess
The connection list access Type Enum.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionGets all the identities who were connected, invited by the provided identity and who invited to connect to the provided identity.Gets a list of identities who were connected with the provided identity.Gets a list of identities who invited to connect to the provided identity.Gets a list of identities who were invited to connect by the provided identity.Gets a list of identities who were connected with the provided identity and profile filterGets a list of identities who invited to connect to the provided identity and profile filterGets a list of identities who were invited to connect by the provided identity and profile filter -
Method Summary
Modifier and TypeMethodDescriptionstatic ConnectionListAccess.TypeReturns the enum constant of this class with the specified name.static ConnectionListAccess.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALL
Gets all the identities who were connected, invited by the provided identity and who invited to connect to the provided identity. -
CONNECTION
Gets a list of identities who were connected with the provided identity. -
INCOMING
Gets a list of identities who invited to connect to the provided identity. -
OUTGOING
Gets a list of identities who were invited to connect by the provided identity. -
PROFILE_FILTER_INCOMMING
Gets a list of identities who invited to connect to the provided identity and profile filter -
PROFILE_FILTER_OUTGOING
Gets a list of identities who were invited to connect by the provided identity and profile filter -
PROFILE_FILTER_CONNECTION
Gets a list of identities who were connected with the provided identity and profile filter
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-