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