org.springframework.social.linkedin.api
Enum UpdateType

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

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

Update Type


Enum Constant Summary
ANSW
           
APPM
           
APPS
           
CCEM
           
CMPY
           
CONN
           
JGRP
           
JOBP
           
MSFC
           
NCON
           
PICU
           
PREC
           
PRFU
           
PRFX
           
PROF
           
QSTN
           
RECU
           
SHAR
           
STAT
           
SVPR
           
UNKNOWN
           
VIRL
           
 
Method Summary
static UpdateType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UpdateType[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ANSW

public static final UpdateType ANSW

APPM

public static final UpdateType APPM

APPS

public static final UpdateType APPS

CMPY

public static final UpdateType CMPY

CONN

public static final UpdateType CONN

NCON

public static final UpdateType NCON

CCEM

public static final UpdateType CCEM

JOBP

public static final UpdateType JOBP

JGRP

public static final UpdateType JGRP

MSFC

public static final UpdateType MSFC

PICU

public static final UpdateType PICU

PREC

public static final UpdateType PREC

PRFX

public static final UpdateType PRFX

RECU

public static final UpdateType RECU

SVPR

public static final UpdateType SVPR

PRFU

public static final UpdateType PRFU

PROF

public static final UpdateType PROF

QSTN

public static final UpdateType QSTN

SHAR

public static final UpdateType SHAR

STAT

public static final UpdateType STAT

VIRL

public static final UpdateType VIRL

UNKNOWN

public static final UpdateType UNKNOWN
Method Detail

values

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

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

valueOf

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