public static enum Photo.EnumType extends Enum<Photo.EnumType>
| Enum Constant and Description |
|---|
VALUE_PROFILE |
VALUE_TAGGED |
VALUE_UPLOADED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Photo.EnumType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Photo.EnumType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Photo.EnumType VALUE_PROFILE
public static final Photo.EnumType VALUE_TAGGED
public static final Photo.EnumType VALUE_UPLOADED
public static Photo.EnumType[] values()
for (Photo.EnumType c : Photo.EnumType.values()) System.out.println(c);
public static Photo.EnumType 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 nullpublic String toString()
toString in class Enum<Photo.EnumType>Copyright © 2020. All rights reserved.