Enum Constant and Description |
---|
C |
CENTER |
E |
EAST |
N |
NE |
NORTH |
NORTHEAST |
NORTHWEST |
NW |
S |
SE |
SOUTH |
SOUTHEAST |
SOUTHWEST |
SW |
W |
WEST |
Modifier and Type | Method and Description |
---|---|
int |
intValue() |
static Anchor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Anchor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Anchor C
public static final Anchor CENTER
public static final Anchor W
public static final Anchor WEST
public static final Anchor E
public static final Anchor EAST
public static final Anchor S
public static final Anchor SOUTH
public static final Anchor N
public static final Anchor NORTH
public static final Anchor NW
public static final Anchor NORTHWEST
public static final Anchor NE
public static final Anchor NORTHEAST
public static final Anchor SW
public static final Anchor SOUTHWEST
public static final Anchor SE
public static final Anchor SOUTHEAST
public static Anchor[] values()
for (Anchor c : Anchor.values()) System.out.println(c);
public static Anchor 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 nullpublic int intValue()
Copyright © 2014 EsprIT-Systems. All Rights Reserved.