public enum UserPhotoSizeType extends java.lang.Enum<UserPhotoSizeType>
| Enum Constant and Description |
|---|
HR120x120 |
HR240x240 |
HR360x360 |
HR432x432 |
HR48x48 |
HR504x504 |
HR648x648 |
HR64x64 |
HR96x96 |
| Modifier and Type | Method and Description |
|---|---|
static UserPhotoSizeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserPhotoSizeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserPhotoSizeType HR48x48
public static final UserPhotoSizeType HR64x64
public static final UserPhotoSizeType HR96x96
public static final UserPhotoSizeType HR120x120
public static final UserPhotoSizeType HR240x240
public static final UserPhotoSizeType HR360x360
public static final UserPhotoSizeType HR432x432
public static final UserPhotoSizeType HR504x504
public static final UserPhotoSizeType HR648x648
public static UserPhotoSizeType[] values()
for (UserPhotoSizeType c : UserPhotoSizeType.values()) System.out.println(c);
public static UserPhotoSizeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null