java.lang.Object java.awt.geom.Dimension2D java.awt.Dimension
public class Dimension
The Dimension
class encapsulates the width and height of a component (in integer precision) in a single object. The class is associated with certain properties of components. Several methods defined by the Component
class and the LayoutManager
interface return a Dimension
object.
Normally the values of width
and height
are non-negative integers. The constructors that allow you to create a dimension do not prevent you from setting a negative value for these properties. If the value of width
or height
is negative, the behavior of some methods defined by other objects is undefined.
Component
, LayoutManager
, Serialized Form
int
height
int
width
Dimension()
Dimension
with a width of zero and a height of zero. Dimension(Dimension d)
Dimension
whose width and height are the same as for the specified dimension. Dimension(int width, int height)
Dimension
and initializes it to the specified width and specified height. Method Summary boolean
equals(Object obj)
double
getHeight()
Dimension
getSize()
Dimension
object. double
getWidth()
int
hashCode()
Dimension
. void
setSize(Dimension d)
Dimension
object to the specified size. void
setSize(double width, double height)
Dimension
object to the specified width and height in double precision. void
setSize(int width, int height)
Dimension
object to the specified width and height. String
toString()
Dimension
object's height
and width
fields. width
public int width
getSize()
, setSize(double, double)
public int height
getSize()
, setSize(double, double)
public Dimension()
Dimension
with a width of zero and a height of zero.
public Dimension(Dimension d)
Dimension
whose width and height are the same as for the specified dimension.
d
- the specified dimension for the width
and height
values
public Dimension(int width, int height)
Dimension
and initializes it to the specified width and specified height.
width
- the specified width
height
- the specified height
public double getWidth()
getWidth
in class Dimension2D
public double getHeight()
getHeight
in class Dimension2D
public void setSize(double width, double height)
Dimension
object to the specified width and height in double precision. Note that if width
or height
are larger than Integer.MAX_VALUE
, they will be reset to Integer.MAX_VALUE
.
setSize
in class Dimension2D
width
- the new width for the Dimension
object
height
- the new height for the Dimension
object
public Dimension getSize()
Dimension
object. This method is included for completeness, to parallel the getSize
method defined by Component
.
Dimension
with the same width and height
setSize(double, double)
, Component.getSize()
public void setSize(Dimension d)
Dimension
object to the specified size. This method is included for completeness, to parallel the setSize
method defined by Component
.
d
- the new size for this Dimension
object
getSize()
, Component.setSize(int, int)
public void setSize(int width, int height)
Dimension
object to the specified width and height. This method is included for completeness, to parallel the setSize
method defined by Component
.
width
- the new width for this Dimension
object
height
- the new height for this Dimension
object
getSize()
, Component.setSize(int, int)
public boolean equals(Object obj)
equals
in class Object
obj
- the reference object with which to compare.
true
if this object is the same as the obj argument; false
otherwise.
Object.hashCode()
, Hashtable
public int hashCode()
Dimension
.
hashCode
in class Object
Dimension
Object.equals(java.lang.Object)
, Hashtable
public String toString()
Dimension
object's height
and width
fields. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not be null
.
toString
in class Object
Dimension
object
Copyright © 2004, 2010 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4