|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.coobird.thumbnailator.geometry.Region
public final class Region
A representation of a region, using a Position
object and a
Dimension
object.
Constructor Summary | |
---|---|
Region(Position position,
Size size)
Instantiates a representation of a region from a Position and
Size . |
Method Summary | |
---|---|
Rectangle |
calculate(int width,
int height)
Calculates the position and size of the enclosed region, relative to the enclosing region. |
Position |
getPosition()
Returns the position of the region. |
Size |
getSize()
Returns the size of the region. |
String |
toString()
Returns a String representation of this region. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Region(Position position, Size size)
Position
and
Size
.
position
- Position of the region.size
- Size of the region.
NullPointerException
- When the position and/or the size is
null
.Method Detail |
---|
public Position getPosition()
public Size getSize()
public Rectangle calculate(int width, int height)
The portions of the enclosed region which lies outside of the enclosing
region are ignored. Effectively, the Rectangle
returned by this
method is a intersection of the enclosing and enclose regions.
width
- Width of the enclosing region.height
- Height of the enclosing region.
public String toString()
String
representation of this region.
toString
in class Object
String
representation of this region.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |