|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.Vector<Object>
org.cip4.jdflib.datatypes.JDFNumList
org.cip4.jdflib.datatypes.JDFRectangle
public class JDFRectangle
This class represents a rectangle JDFRectangle) consisting of a lower left x value (llx), a lower left y value (lly), an upper right x value (urx) and an upper right y value (ury) all values are Double types.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface org.cip4.jdflib.datatypes.JDFBaseDataTypes |
|---|
JDFBaseDataTypes.EnumFitsValue |
| Field Summary |
|---|
| Fields inherited from class java.util.Vector |
|---|
capacityIncrement, elementCount, elementData |
| Fields inherited from class java.util.AbstractList |
|---|
modCount |
| Fields inherited from interface org.cip4.jdflib.datatypes.JDFBaseDataTypes |
|---|
EPSILON, MAX_CMYK_COLOR, MAX_LAB_COLOR, MAX_MATRIX_DIMENSION, MAX_RECTANGLE_DIMENSION, MAX_RGB_COLOR, MAX_SHAPE_DIMENSION, MAX_XY_DIMENSION |
| Constructor Summary | |
|---|---|
JDFRectangle()
constructs a rectangle with all 4 values set to 0.0 Double |
|
JDFRectangle(double llx,
double lly,
double urx,
double ury)
constructs a new JDFRectangle with the given double values |
|
JDFRectangle(JDFNumList nl)
constructs a rectangle with all values set via a JDFNumberList |
|
JDFRectangle(JDFRectangle rec)
constructs a rectangle with all values set via a JDFRectangle |
|
JDFRectangle(String s)
constructs a rectangle with all values set via a String |
|
JDFRectangle(Vector v)
Deprecated. use typesafe constructors |
|
| Method Summary | |
|---|---|
static JDFRectangle |
createRectangle(String s)
factory for JDFRectangle that silently returns null in case of illegal strings |
double |
getHeight()
getHeight - returns the height of the rectangle, the difference between upper right y value and lower left y value as an absolute value |
double |
getLlx()
getLlx - returns the lower left x coordinate |
double |
getLly()
getLly - returns the lower left y coordinate |
double |
getUrx()
getUrx - returns the upper right x coordinate |
double |
getUry()
getUry - returns the upper right y coordinate |
double |
getWidth()
getWidth - returns the width of the rectangle, the difference between upper right x value and lower left x value as an absolute value |
boolean |
isGreater(JDFRectangle r)
isGreater - equality operator > |
boolean |
isGreaterOrEqual(JDFRectangle r)
isGreaterOrEqual - equality operator >= |
boolean |
isLess(JDFRectangle r)
isLess - equality operator < |
boolean |
isLessOrEqual(JDFRectangle r)
isLessOrEqual - equality operator <= |
boolean |
isValid()
isValid - true if the size of the vector is 4 and all instances are Double types |
void |
setLlx(double x)
setLlx - sets the lower left x coordinate |
void |
setLlxMm(double mmX)
setLlXMm - sets the lower left x coordinate in millimeter |
void |
setLly(double y)
setLly - sets the lower left y coordinate |
void |
setLlyMm(double mmY)
setLlyMm - sets the lower left y coordinate in millimeter |
void |
setUrx(double x)
setUrx - sets the upper right x coordinate |
void |
setUrxMm(double mmX)
setUrxMm - sets the upper right x coordinate in millimeter |
void |
setUry(double y)
setUry - sets the upper right y coordinate |
void |
setUryMm(double mmY)
setUryMm - sets the upper right y coordinate in millimeter |
| Methods inherited from class org.cip4.jdflib.datatypes.JDFNumList |
|---|
abs, clone, contains, containsAll, copyNumList, doubleAt, elementAt, equals, getDoubleList, getIntArray, getString, getString, hashCode, isValidString, matches, removeElementAt, replaceElementAt, scale, scaleFromCM, scaleFromMM, scaleToCM, scaleToMM, set, setString, subtract, toString, unify |
| Methods inherited from class java.util.Vector |
|---|
add, add, addAll, addAll, addElement, capacity, clear, contains, containsAll, copyInto, elements, ensureCapacity, firstElement, get, indexOf, indexOf, insertElementAt, isEmpty, lastElement, lastIndexOf, lastIndexOf, remove, remove, removeAll, removeAllElements, removeElement, removeRange, retainAll, set, setElementAt, setSize, size, subList, toArray, toArray, trimToSize |
| Methods inherited from class java.util.AbstractList |
|---|
iterator, listIterator, listIterator |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
|---|
iterator, listIterator, listIterator |
| Constructor Detail |
|---|
public JDFRectangle()
@Deprecated
public JDFRectangle(Vector v)
throws DataFormatException
v - the given Vector with MAX_RECTANGLE_DIMENSION objects of type Double
DataFormatException - - if the Vector has not a valid format
public JDFRectangle(String s)
throws DataFormatException
s - the given String, blank separated numbers
DataFormatException - - if the String has not a valid formatpublic JDFRectangle(JDFRectangle rec)
rec - the given rectangle
public JDFRectangle(JDFNumList nl)
throws DataFormatException
nl - the given number list
DataFormatException - - if the JDFNumberList has not a valid format
public JDFRectangle(double llx,
double lly,
double urx,
double ury)
llx - lower left x coordinatelly - lower left y coordinateurx - lower left x coordinateury - lower left y coordinate| Method Detail |
|---|
public static JDFRectangle createRectangle(String s)
s - the string to parse
public boolean isValid()
throws DataFormatException
isValid in class JDFNumListDataFormatException - - if the Vector has not a valid formatpublic double getLlx()
public void setLlx(double x)
x - the lower left x coordinatepublic void setLlxMm(double mmX)
mmX - the lower left x coordinate in millimeterpublic double getLly()
public void setLly(double y)
y - the lower left y coordinatepublic void setLlyMm(double mmY)
mmY - the lower left y coordinate in millimeterpublic double getUrx()
public void setUrx(double x)
x - the upper right x coordinatepublic void setUrxMm(double mmX)
mmX - the upper right x coordinate in millimeterpublic double getUry()
public void setUry(double y)
y - the upper right y coordinatepublic void setUryMm(double mmY)
mmY - the upper right y coordinate in millimeterpublic double getWidth()
public double getHeight()
public boolean isGreater(JDFRectangle r)
r - the JDFRectangle object to compare to
this > rpublic boolean isGreaterOrEqual(JDFRectangle r)
r - the JDFRectangle object to compare to
this >= rpublic boolean isLess(JDFRectangle r)
r - the JDFRectangle object to compare to
this < rpublic boolean isLessOrEqual(JDFRectangle r)
r - the JDFRectangle object to compare to
this <= r
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||