Package com.streamlayer.interactive.feed
Enum FeedItemAttributes.AttributesCase
- java.lang.Object
-
- java.lang.Enum<FeedItemAttributes.AttributesCase>
-
- com.streamlayer.interactive.feed.FeedItemAttributes.AttributesCase
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FeedItemAttributes.AttributesCase>
- Enclosing class:
- FeedItemAttributes
public static enum FeedItemAttributes.AttributesCase extends java.lang.Enum<FeedItemAttributes.AttributesCase>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATTRIBUTES_NOT_SETINSIGHTPROMOTIONQUESTIONTWEET
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static FeedItemAttributes.AttributesCaseforNumber(int value)intgetNumber()static FeedItemAttributes.AttributesCasevalueOf(int value)Deprecated.static FeedItemAttributes.AttributesCasevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FeedItemAttributes.AttributesCase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
QUESTION
public static final FeedItemAttributes.AttributesCase QUESTION
-
TWEET
public static final FeedItemAttributes.AttributesCase TWEET
-
INSIGHT
public static final FeedItemAttributes.AttributesCase INSIGHT
-
PROMOTION
public static final FeedItemAttributes.AttributesCase PROMOTION
-
ATTRIBUTES_NOT_SET
public static final FeedItemAttributes.AttributesCase ATTRIBUTES_NOT_SET
-
-
Method Detail
-
values
public static FeedItemAttributes.AttributesCase[] 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 (FeedItemAttributes.AttributesCase c : FeedItemAttributes.AttributesCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeedItemAttributes.AttributesCase 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 namejava.lang.NullPointerException- if the argument is null
-
valueOf
@Deprecated public static FeedItemAttributes.AttributesCase valueOf(int value)
Deprecated.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:
value- 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 namejava.lang.NullPointerException- if the argument is null
-
forNumber
public static FeedItemAttributes.AttributesCase forNumber(int value)
-
getNumber
public int getNumber()
-
-