Package com.vk.api.sdk.objects.photos
Enum PhotoSizesType
- java.lang.Object
-
- java.lang.Enum<PhotoSizesType>
-
- com.vk.api.sdk.objects.photos.PhotoSizesType
-
- All Implemented Interfaces:
EnumParam,java.io.Serializable,java.lang.Comparable<PhotoSizesType>
public enum PhotoSizesType extends java.lang.Enum<PhotoSizesType> implements EnumParam
Size type
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()java.lang.StringtoString()static PhotoSizesTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PhotoSizesType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
S
@SerializedName("s") public static final PhotoSizesType S
-
M
@SerializedName("m") public static final PhotoSizesType M
-
X
@SerializedName("x") public static final PhotoSizesType X
-
O
@SerializedName("o") public static final PhotoSizesType O
-
P
@SerializedName("p") public static final PhotoSizesType P
-
Q
@SerializedName("q") public static final PhotoSizesType Q
-
R
@SerializedName("r") public static final PhotoSizesType R
-
K
@SerializedName("k") public static final PhotoSizesType K
-
L
@SerializedName("l") public static final PhotoSizesType L
-
Y
@SerializedName("y") public static final PhotoSizesType Y
-
Z
@SerializedName("z") public static final PhotoSizesType Z
-
C
@SerializedName("c") public static final PhotoSizesType C
-
W
@SerializedName("w") public static final PhotoSizesType W
-
A
@SerializedName("a") public static final PhotoSizesType A
-
B
@SerializedName("b") public static final PhotoSizesType B
-
E
@SerializedName("e") public static final PhotoSizesType E
-
I
@SerializedName("i") public static final PhotoSizesType I
-
D
@SerializedName("d") public static final PhotoSizesType D
-
J
@SerializedName("j") public static final PhotoSizesType J
-
TEMP
@SerializedName("temp") public static final PhotoSizesType TEMP
-
H
@SerializedName("h") public static final PhotoSizesType H
-
G
@SerializedName("g") public static final PhotoSizesType G
-
N
@SerializedName("n") public static final PhotoSizesType N
-
F
@SerializedName("f") public static final PhotoSizesType F
-
MAX
@SerializedName("max") public static final PhotoSizesType MAX
-
-
Method Detail
-
values
public static PhotoSizesType[] 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 (PhotoSizesType c : PhotoSizesType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PhotoSizesType 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<PhotoSizesType>
-
-