public static enum Picture.Field extends Enum<Picture.Field>
| Modifier and Type | Method and Description |
|---|---|
static Picture.Field |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Picture.Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Picture.Field pictures
public static final Picture.Field picture
public static final Picture.Field data
public static Picture.Field[] values()
for (Picture.Field c : Picture.Field.values()) System.out.println(c);
public static Picture.Field 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 nullCopyright © 2022. All rights reserved.