Package org.rspeer.commons
Enum DelegatingBorder.Anchor
- java.lang.Object
-
- java.lang.Enum<DelegatingBorder.Anchor>
-
- org.rspeer.commons.DelegatingBorder.Anchor
-
- All Implemented Interfaces:
Serializable,Comparable<DelegatingBorder.Anchor>
- Enclosing class:
- DelegatingBorder
public static enum DelegatingBorder.Anchor extends Enum<DelegatingBorder.Anchor>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NORTH_EASTNORTH_WESTSOUTH_EASTSOUTH_WEST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DelegatingBorder.AnchorvalueOf(String name)Returns the enum constant of this type with the specified name.static DelegatingBorder.Anchor[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORTH_EAST
public static final DelegatingBorder.Anchor NORTH_EAST
-
SOUTH_EAST
public static final DelegatingBorder.Anchor SOUTH_EAST
-
NORTH_WEST
public static final DelegatingBorder.Anchor NORTH_WEST
-
SOUTH_WEST
public static final DelegatingBorder.Anchor SOUTH_WEST
-
-
Method Detail
-
values
public static DelegatingBorder.Anchor[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DelegatingBorder.Anchor c : DelegatingBorder.Anchor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DelegatingBorder.Anchor valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-