Package com.vk.api.sdk.objects.enums
Enum AppWidgetsType
- java.lang.Object
-
- java.lang.Enum<AppWidgetsType>
-
- com.vk.api.sdk.objects.enums.AppWidgetsType
-
- All Implemented Interfaces:
EnumParam,java.io.Serializable,java.lang.Comparable<AppWidgetsType>
public enum AppWidgetsType extends java.lang.Enum<AppWidgetsType> implements EnumParam
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPACT_LISTCOVER_LISTDONATIONLISTMATCHMATCHESTABLETEXTTILES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()java.lang.StringtoString()static AppWidgetsTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AppWidgetsType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPACT_LIST
@SerializedName("compact_list") public static final AppWidgetsType COMPACT_LIST
-
COVER_LIST
@SerializedName("cover_list") public static final AppWidgetsType COVER_LIST
-
DONATION
@SerializedName("donation") public static final AppWidgetsType DONATION
-
LIST
@SerializedName("list") public static final AppWidgetsType LIST
-
MATCH
@SerializedName("match") public static final AppWidgetsType MATCH
-
MATCHES
@SerializedName("matches") public static final AppWidgetsType MATCHES
-
TABLE
@SerializedName("table") public static final AppWidgetsType TABLE
-
TEXT
@SerializedName("text") public static final AppWidgetsType TEXT
-
TILES
@SerializedName("tiles") public static final AppWidgetsType TILES
-
-
Method Detail
-
values
public static AppWidgetsType[] 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 (AppWidgetsType c : AppWidgetsType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AppWidgetsType 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<AppWidgetsType>
-
-