Package com.vk.api.sdk.objects.stories
Enum ClickableStickerType
- java.lang.Object
-
- java.lang.Enum<ClickableStickerType>
-
- com.vk.api.sdk.objects.stories.ClickableStickerType
-
- All Implemented Interfaces:
EnumParam,java.io.Serializable,java.lang.Comparable<ClickableStickerType>
public enum ClickableStickerType extends java.lang.Enum<ClickableStickerType> implements EnumParam
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPHASHTAGLINKMARKET_ITEMMENTIONMUSICOWNERPLACEPOLLPOSTQUESTIONSITUATIONAL_THEMESTICKERSTORY_REPLY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()java.lang.StringtoString()static ClickableStickerTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ClickableStickerType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HASHTAG
@SerializedName("hashtag") public static final ClickableStickerType HASHTAG
-
MENTION
@SerializedName("mention") public static final ClickableStickerType MENTION
-
LINK
@SerializedName("link") public static final ClickableStickerType LINK
-
QUESTION
@SerializedName("question") public static final ClickableStickerType QUESTION
-
PLACE
@SerializedName("place") public static final ClickableStickerType PLACE
-
MARKET_ITEM
@SerializedName("market_item") public static final ClickableStickerType MARKET_ITEM
-
MUSIC
@SerializedName("music") public static final ClickableStickerType MUSIC
-
STORY_REPLY
@SerializedName("story_reply") public static final ClickableStickerType STORY_REPLY
-
OWNER
@SerializedName("owner") public static final ClickableStickerType OWNER
-
POST
@SerializedName("post") public static final ClickableStickerType POST
-
POLL
@SerializedName("poll") public static final ClickableStickerType POLL
-
STICKER
@SerializedName("sticker") public static final ClickableStickerType STICKER
-
APP
@SerializedName("app") public static final ClickableStickerType APP
-
SITUATIONAL_THEME
@SerializedName("situational_theme") public static final ClickableStickerType SITUATIONAL_THEME
-
-
Method Detail
-
values
public static ClickableStickerType[] 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 (ClickableStickerType c : ClickableStickerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClickableStickerType 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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<ClickableStickerType>
-
-