org.springframework.social.linkedin.api
Enum UpdateTypeInput

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

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

Update Type for input to search


Enum Constant Summary
ANSW
           
APPS
           
CMPY
           
CONN
           
JGRP
           
JOBS
           
PICT
           
PRFU
           
PRFX
           
QSTN
           
RECU
           
SHAR
           
VIRL
           
 
Method Summary
static UpdateTypeInput valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UpdateTypeInput[] 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 UpdateTypeInput ANSW

APPS

public static final UpdateTypeInput APPS

CMPY

public static final UpdateTypeInput CMPY

CONN

public static final UpdateTypeInput CONN

JOBS

public static final UpdateTypeInput JOBS

JGRP

public static final UpdateTypeInput JGRP

PICT

public static final UpdateTypeInput PICT

PRFX

public static final UpdateTypeInput PRFX

RECU

public static final UpdateTypeInput RECU

PRFU

public static final UpdateTypeInput PRFU

QSTN

public static final UpdateTypeInput QSTN

SHAR

public static final UpdateTypeInput SHAR

VIRL

public static final UpdateTypeInput VIRL
Method Detail

values

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

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

valueOf

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