java.lang.Object | |
↳ | android.hardware.Camera.Size |
This class was deprecated
in API level 21.
We recommend using the new android.hardware.camera2
API for new
applications.
Image size (width and height dimensions).
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
height | height of the picture | ||||||||||
width | width of the picture |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Sets the dimensions for pictures.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Compares
obj to this size.
| |||||||||||
Returns an integer hash code for this object.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Sets the dimensions for pictures.
w | the photo width (pixels) |
---|---|
h | the photo height (pixels) |
Compares obj
to this size.
obj | the object to compare this size with. |
---|
true
if the width and height of obj
is the
same as those of this size. false
otherwise.
Returns an integer hash code for this object. By contract, any two
objects for which equals(Object)
returns true
must return
the same hash code value. This means that subclasses of Object
usually override both methods or neither method.
Note that hash values must not change over time unless information used in equals comparisons also changes.
See Writing a correct
hashCode
method
if you intend implementing your own hashCode
method.