facebook4j
Enum GroupPrivacyType

java.lang.Object
  extended by java.lang.Enum<GroupPrivacyType>
      extended by facebook4j.GroupPrivacyType
All Implemented Interfaces:
Serializable, Comparable<GroupPrivacyType>

public enum GroupPrivacyType
extends Enum<GroupPrivacyType>

An enum represents the privacy setting of a group

Author:
Ryuji Yamashita - roundrop at gmail.com
See Also:
Group - Facebook Developers

Enum Constant Summary
CLOSED
           
OPEN
           
SECRET
           
 
Method Summary
static GroupPrivacyType getInstance(String groupPrivacyTypeString)
           
static GroupPrivacyType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GroupPrivacyType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

OPEN

public static final GroupPrivacyType OPEN

SECRET

public static final GroupPrivacyType SECRET

CLOSED

public static final GroupPrivacyType CLOSED
Method Detail

values

public static GroupPrivacyType[] 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 (GroupPrivacyType c : GroupPrivacyType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GroupPrivacyType 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 name
NullPointerException - if the argument is null

getInstance

public static GroupPrivacyType getInstance(String groupPrivacyTypeString)


Copyright © 2019. All rights reserved.