Enum YammerFunctionType
- java.lang.Object
-
- java.lang.Enum<YammerFunctionType>
-
- org.apache.camel.component.yammer.YammerFunctionType
-
- All Implemented Interfaces:
Serializable
,Comparable<YammerFunctionType>
public enum YammerFunctionType extends Enum<YammerFunctionType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static YammerFunctionType
fromUri(String uri)
static YammerFunctionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static YammerFunctionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MESSAGES
public static final YammerFunctionType MESSAGES
-
MY_FEED
public static final YammerFunctionType MY_FEED
-
ALGO
public static final YammerFunctionType ALGO
-
FOLLOWING
public static final YammerFunctionType FOLLOWING
-
SENT
public static final YammerFunctionType SENT
-
PRIVATE
public static final YammerFunctionType PRIVATE
-
RECEIVED
public static final YammerFunctionType RECEIVED
-
USERS
public static final YammerFunctionType USERS
-
CURRENT
public static final YammerFunctionType CURRENT
-
-
Method Detail
-
values
public static YammerFunctionType[] 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 (YammerFunctionType c : YammerFunctionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static YammerFunctionType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromUri
public static YammerFunctionType fromUri(String uri)
-
-