org.springframework.social.linkedin.api
Enum ProfileField

java.lang.Object
  extended by java.lang.Enum<ProfileField>
      extended by org.springframework.social.linkedin.api.ProfileField
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ProfileField>

public enum ProfileField
extends java.lang.Enum<ProfileField>

Profile Field


Enum Constant Summary
API_PUBLIC_PROFILE_REQUEST_URL
           
API_STANDARD_PROFILE_REQUEST
           
ASSOCIATIONS
           
CERTIFICATIONS
           
CONNECTIONS
           
CURRENT_SHARE
           
DATE_OF_BIRTH
           
DISTANCE
           
EDUCATIONS
           
FIRST_NAME
           
HEADLINE
           
HONORS
           
ID
           
IM_ACCOUNTS
           
INDUSTRY
           
INTERESTS
           
LANGUAGES
           
LAST_NAME
           
LOCATION
           
MAIN_ADDRESS
           
MEMBER_URL_RESOURCES
           
NUM_CONNECTIONS
           
NUM_CONNECTIONS_CAPPED
           
NUM_RECOMMENDERS
           
PATENTS
           
PHONE_NUMBERS
           
PICTURE_URL
           
POSITIONS
           
PROPOSAL_COMMENTS
           
PUBLIC_PROFILE_URL
           
PUBLICATIONS
           
RECOMMENDATIONS_RECEIVED
           
RELATION_TO_VIEWER
           
SITE_PUBLIC_PROFILE_REQUEST_URL
           
SITE_STANDARD_PROFILE_REQUEST_URL
           
SKILLS
           
SPECIALTIES
           
SUMMARY
           
THREE_CURRENT_POSITIONS
           
THREE_PAST_POSITIONS
           
TWITTER_ACCOUNTS
           
 
Method Summary
 java.lang.String toString()
           
static ProfileField valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ProfileField[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ID

public static final ProfileField ID

FIRST_NAME

public static final ProfileField FIRST_NAME

LAST_NAME

public static final ProfileField LAST_NAME

HEADLINE

public static final ProfileField HEADLINE

LOCATION

public static final ProfileField LOCATION

INDUSTRY

public static final ProfileField INDUSTRY

DISTANCE

public static final ProfileField DISTANCE

RELATION_TO_VIEWER

public static final ProfileField RELATION_TO_VIEWER

CURRENT_SHARE

public static final ProfileField CURRENT_SHARE

CONNECTIONS

public static final ProfileField CONNECTIONS

NUM_CONNECTIONS

public static final ProfileField NUM_CONNECTIONS

NUM_CONNECTIONS_CAPPED

public static final ProfileField NUM_CONNECTIONS_CAPPED

SUMMARY

public static final ProfileField SUMMARY

SPECIALTIES

public static final ProfileField SPECIALTIES

PROPOSAL_COMMENTS

public static final ProfileField PROPOSAL_COMMENTS

ASSOCIATIONS

public static final ProfileField ASSOCIATIONS

HONORS

public static final ProfileField HONORS

INTERESTS

public static final ProfileField INTERESTS

POSITIONS

public static final ProfileField POSITIONS

PUBLICATIONS

public static final ProfileField PUBLICATIONS

PATENTS

public static final ProfileField PATENTS

LANGUAGES

public static final ProfileField LANGUAGES

SKILLS

public static final ProfileField SKILLS

CERTIFICATIONS

public static final ProfileField CERTIFICATIONS

EDUCATIONS

public static final ProfileField EDUCATIONS

THREE_CURRENT_POSITIONS

public static final ProfileField THREE_CURRENT_POSITIONS

THREE_PAST_POSITIONS

public static final ProfileField THREE_PAST_POSITIONS

NUM_RECOMMENDERS

public static final ProfileField NUM_RECOMMENDERS

RECOMMENDATIONS_RECEIVED

public static final ProfileField RECOMMENDATIONS_RECEIVED

PHONE_NUMBERS

public static final ProfileField PHONE_NUMBERS

IM_ACCOUNTS

public static final ProfileField IM_ACCOUNTS

TWITTER_ACCOUNTS

public static final ProfileField TWITTER_ACCOUNTS

DATE_OF_BIRTH

public static final ProfileField DATE_OF_BIRTH

MAIN_ADDRESS

public static final ProfileField MAIN_ADDRESS

MEMBER_URL_RESOURCES

public static final ProfileField MEMBER_URL_RESOURCES

PICTURE_URL

public static final ProfileField PICTURE_URL

SITE_STANDARD_PROFILE_REQUEST_URL

public static final ProfileField SITE_STANDARD_PROFILE_REQUEST_URL

API_PUBLIC_PROFILE_REQUEST_URL

public static final ProfileField API_PUBLIC_PROFILE_REQUEST_URL

SITE_PUBLIC_PROFILE_REQUEST_URL

public static final ProfileField SITE_PUBLIC_PROFILE_REQUEST_URL

API_STANDARD_PROFILE_REQUEST

public static final ProfileField API_STANDARD_PROFILE_REQUEST

PUBLIC_PROFILE_URL

public static final ProfileField PUBLIC_PROFILE_URL
Method Detail

values

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

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

valueOf

public static ProfileField valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<ProfileField>