issrg.policytester.util
Enum BalloonTip.TriangleTipLocation
java.lang.Object
java.lang.Enum<BalloonTip.TriangleTipLocation>
issrg.policytester.util.BalloonTip.TriangleTipLocation
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<BalloonTip.TriangleTipLocation>
- Enclosing class:
- BalloonTip
public static enum BalloonTip.TriangleTipLocation
- extends java.lang.Enum<BalloonTip.TriangleTipLocation>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
AUTOMATIC
public static final BalloonTip.TriangleTipLocation AUTOMATIC
CENTER
public static final BalloonTip.TriangleTipLocation CENTER
NORTH
public static final BalloonTip.TriangleTipLocation NORTH
NORTHEAST
public static final BalloonTip.TriangleTipLocation NORTHEAST
EAST
public static final BalloonTip.TriangleTipLocation EAST
SOUTHEAST
public static final BalloonTip.TriangleTipLocation SOUTHEAST
SOUTH
public static final BalloonTip.TriangleTipLocation SOUTH
SOUTHWEST
public static final BalloonTip.TriangleTipLocation SOUTHWEST
WEST
public static final BalloonTip.TriangleTipLocation WEST
NORTHWEST
public static final BalloonTip.TriangleTipLocation NORTHWEST
values
public static final BalloonTip.TriangleTipLocation[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(BalloonTip.TriangleTipLocation c : BalloonTip.TriangleTipLocation.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static BalloonTip.TriangleTipLocation valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name