public static enum UserUtils.AvatarSize extends Enum<UserUtils.AvatarSize>
| Enum Constant and Description |
|---|
BIGGER |
MINI |
NORMAL |
ORIGINAL |
REASONABLY_SMALL |
| Modifier and Type | Method and Description |
|---|---|
static UserUtils.AvatarSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserUtils.AvatarSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserUtils.AvatarSize NORMAL
public static final UserUtils.AvatarSize BIGGER
public static final UserUtils.AvatarSize MINI
public static final UserUtils.AvatarSize ORIGINAL
public static final UserUtils.AvatarSize REASONABLY_SMALL
public static UserUtils.AvatarSize[] values()
for (UserUtils.AvatarSize c : UserUtils.AvatarSize.values()) System.out.println(c);
public static UserUtils.AvatarSize valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null