com.google.code.linkedinapi.client.enumeration
Enum EducationsField

java.lang.Object
  extended by java.lang.Enum<EducationsField>
      extended by com.google.code.linkedinapi.client.enumeration.EducationsField
All Implemented Interfaces:
FieldEnum, java.io.Serializable, java.lang.Comparable<EducationsField>

public enum EducationsField
extends java.lang.Enum<EducationsField>
implements FieldEnum

Author:
Nabeel Mukhtar

Enum Constant Summary
ACTIVITIES
          the activities at the school, as indicated by the member
DEGREE
          the degree of study obtained at the school, as indicated by the member
END_DATE
          a structured object with a year field indicating when the education ended.
FIELD_OF_STUDY
          the field of study at the school, as indicated by the member
ID
          a unique identifier for this member's education entry.
SCHOOL_NAME
          the name of the school, as indicated by the member
START_DATE
          a structured object a year field indicating when the education began
 
Field Summary
private  java.lang.String fieldName
          Field description
private static java.util.Map<java.lang.String,EducationsField> stringToEnum
          Field Description.
 
Method Summary
 java.lang.String fieldName()
           
static EducationsField fromString(java.lang.String symbol)
           
 java.lang.String toString()
          Method description
static EducationsField valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EducationsField[] 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 EducationsField ID
a unique identifier for this member's education entry.


SCHOOL_NAME

public static final EducationsField SCHOOL_NAME
the name of the school, as indicated by the member


FIELD_OF_STUDY

public static final EducationsField FIELD_OF_STUDY
the field of study at the school, as indicated by the member


DEGREE

public static final EducationsField DEGREE
the degree of study obtained at the school, as indicated by the member


ACTIVITIES

public static final EducationsField ACTIVITIES
the activities at the school, as indicated by the member


START_DATE

public static final EducationsField START_DATE
a structured object a year field indicating when the education began


END_DATE

public static final EducationsField END_DATE
a structured object with a year field indicating when the education ended.

Field Detail

stringToEnum

private static final java.util.Map<java.lang.String,EducationsField> stringToEnum
Field Description.


fieldName

private final java.lang.String fieldName
Field description

Method Detail

values

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

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

valueOf

public static EducationsField 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

fieldName

public java.lang.String fieldName()
Specified by:
fieldName in interface FieldEnum
Returns:
the name of the field

toString

public java.lang.String toString()
Method description

Overrides:
toString in class java.lang.Enum<EducationsField>
Returns:

fromString

public static EducationsField fromString(java.lang.String symbol)
Returns:
Returns EducationsField for string, or null if string is invalid