public class Camera.Size
extends Object
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 |
|
---|---|
public int |
height height of the picture |
public int |
width width of the picture |
Public constructors |
|
---|---|
Camera.Size(int w, int h) Sets the dimensions for pictures. |
Public methods |
|
---|---|
boolean |
equals(Object obj) Compares |
int |
hashCode() Returns a hash code value for the object. |
Inherited methods |
|
---|---|
![]() java.lang.Object
|
Camera.Size (int w, int h)
Sets the dimensions for pictures.
Parameters | |
---|---|
w |
int : the photo width (pixels) |
h |
int : the photo height (pixels) |
boolean equals (Object obj)
Compares obj
to this size.
Parameters | |
---|---|
obj |
Object : the object to compare this size with. |
Returns | |
---|---|
boolean |
true if the width and height of obj is the same as those of this size. false otherwise. |
int hashCode ()
Returns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided by HashMap
.
The general contract of hashCode
is:
hashCode
method must consistently return the same integer, provided no information used in equals
comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application. equals(Object)
method, then calling the hashCode
method on each of the two objects must produce the same integer result. equals(java.lang.Object)
method, then calling the hashCode
method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables. As much as is reasonably practical, the hashCode method defined by class Object
does return distinct integers for distinct objects. (This is typically implemented by converting the internal address of the object into an integer, but this implementation technique is not required by the JavaTM programming language.)
Returns | |
---|---|
int |
a hash code value for this object. |