public static enum AdornedImageDescriptor.Location extends java.lang.Enum<AdornedImageDescriptor.Location>
| Enum Constant and Description |
|---|
LEFT_BOTTOM
Place it to the left bottom
|
LEFT_TOP
Place it to the left top
|
RIGHT_BOTTOM
Place it to the right bottom
|
RIGHT_TOP
Place it to the right top
|
| Modifier and Type | Method and Description |
|---|---|
static AdornedImageDescriptor.Location |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdornedImageDescriptor.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdornedImageDescriptor.Location LEFT_TOP
public static final AdornedImageDescriptor.Location LEFT_BOTTOM
public static final AdornedImageDescriptor.Location RIGHT_TOP
public static final AdornedImageDescriptor.Location RIGHT_BOTTOM
public static AdornedImageDescriptor.Location[] values()
for (AdornedImageDescriptor.Location c : AdornedImageDescriptor.Location.values()) System.out.println(c);
public static AdornedImageDescriptor.Location valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null