public final enum

SearchSortOrder

extends Enum<E extends Enum<E>>
implements FieldEnum
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.code.linkedinapi.client.enumeration.SearchSortOrder

Summary

Enum Values
SearchSortOrder  CONNECTIONS  Number of connections per person, from largest to smallest. 
SearchSortOrder  DISTANCE  Orders the returns based on the ascending degree of separation within a member's network, with first degree connections first. 
SearchSortOrder  RECOMMENDERS  Orders the returns by number of ensorsers each of the search returns has. 
SearchSortOrder  RELEVANCE  Orders the returns based on relevance for the keywords provided. 
Fields
private final String fieldName Field description
private static final Map<String, SearchSortOrder> stringToEnum Field Description.
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
String fieldName()
static SearchSortOrder fromString(String symbol)
String toString()
Method description
static SearchSortOrder valueOf(String name)
final static SearchSortOrder[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface com.google.code.linkedinapi.client.enumeration.FieldEnum
From interface java.lang.Comparable

Enum Values

public static final SearchSortOrder CONNECTIONS

Number of connections per person, from largest to smallest.

public static final SearchSortOrder DISTANCE

Orders the returns based on the ascending degree of separation within a member's network, with first degree connections first.

public static final SearchSortOrder RECOMMENDERS

Orders the returns by number of ensorsers each of the search returns has.

public static final SearchSortOrder RELEVANCE

Orders the returns based on relevance for the keywords provided.

Fields

private final String fieldName

Field description

private static final Map<String, SearchSortOrder> stringToEnum

Field Description.

Public Methods

public String fieldName ()

Returns
  • the name of the field

public static SearchSortOrder fromString (String symbol)

Parameters
symbol
Returns
  • Returns SearchSortOrder for string, or null if string is invalid

public String toString ()

Method description

public static SearchSortOrder valueOf (String name)

Parameters
name

public static final SearchSortOrder[] values ()