public enum PopupWay extends Enum<PopupWay>
Enum Constant and Description |
---|
downCenter |
downLeft |
downRight |
leftCenter |
leftDown |
leftUp |
rightCenter |
rightDown |
rightUp |
upCenter |
upLeft |
upRight |
Modifier and Type | Method and Description |
---|---|
static PopupWay |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PopupWay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PopupWay upCenter
public static final PopupWay upLeft
public static final PopupWay upRight
public static final PopupWay leftCenter
public static final PopupWay leftUp
public static final PopupWay leftDown
public static final PopupWay downCenter
public static final PopupWay downLeft
public static final PopupWay downRight
public static final PopupWay rightCenter
public static final PopupWay rightUp
public static final PopupWay rightDown
public static PopupWay[] values()
for (PopupWay c : PopupWay.values()) System.out.println(c);
public static PopupWay 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 © 2020. All rights reserved.