Enum SVGRectangle.AttachPoints
- java.lang.Object
-
- java.lang.Enum<SVGRectangle.AttachPoints>
-
- hudson.plugins.project_inheritance.util.svg.primitives.SVGRectangle.AttachPoints
-
- All Implemented Interfaces:
Serializable
,Comparable<SVGRectangle.AttachPoints>
- Enclosing class:
- SVGRectangle
public static enum SVGRectangle.AttachPoints extends Enum<SVGRectangle.AttachPoints>
-
-
Field Summary
Fields Modifier and Type Field Description int
modulo
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
contains(SVGRectangle.AttachPoints other)
static SVGRectangle.AttachPoints
valueOf(String name)
Returns the enum constant of this type with the specified name.static SVGRectangle.AttachPoints[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOP_LEFT
public static final SVGRectangle.AttachPoints TOP_LEFT
-
TOP_MID
public static final SVGRectangle.AttachPoints TOP_MID
-
TOP_RIGHT
public static final SVGRectangle.AttachPoints TOP_RIGHT
-
MID_LEFT
public static final SVGRectangle.AttachPoints MID_LEFT
-
MID_RIGHT
public static final SVGRectangle.AttachPoints MID_RIGHT
-
BTM_LEFT
public static final SVGRectangle.AttachPoints BTM_LEFT
-
BTM_MID
public static final SVGRectangle.AttachPoints BTM_MID
-
BTM_RIGHT
public static final SVGRectangle.AttachPoints BTM_RIGHT
-
TOP
public static final SVGRectangle.AttachPoints TOP
-
BTM
public static final SVGRectangle.AttachPoints BTM
-
LEFT
public static final SVGRectangle.AttachPoints LEFT
-
RIGHT
public static final SVGRectangle.AttachPoints RIGHT
-
HORIZ
public static final SVGRectangle.AttachPoints HORIZ
-
VERT
public static final SVGRectangle.AttachPoints VERT
-
CORNERS
public static final SVGRectangle.AttachPoints CORNERS
-
MIDPOINTS
public static final SVGRectangle.AttachPoints MIDPOINTS
-
ALL
public static final SVGRectangle.AttachPoints ALL
-
-
Method Detail
-
values
public static SVGRectangle.AttachPoints[] 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 (SVGRectangle.AttachPoints c : SVGRectangle.AttachPoints.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SVGRectangle.AttachPoints 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
-
contains
public boolean contains(SVGRectangle.AttachPoints other)
-
-