package android.hardware.camera2.params;
public final class MeteringRectangle
{
public MeteringRectangle(int x, int y, int width, int height, int meteringWeight) { throw new RuntimeException("Stub!"); }
public MeteringRectangle(android.graphics.Point xy, android.util.Size dimensions, int meteringWeight) { throw new RuntimeException("Stub!"); }
public MeteringRectangle(android.graphics.Rect rect, int meteringWeight) { throw new RuntimeException("Stub!"); }
public int getX() { throw new RuntimeException("Stub!"); }
public int getY() { throw new RuntimeException("Stub!"); }
public int getWidth() { throw new RuntimeException("Stub!"); }
public int getHeight() { throw new RuntimeException("Stub!"); }
public int getMeteringWeight() { throw new RuntimeException("Stub!"); }
public android.graphics.Point getUpperLeftPoint() { throw new RuntimeException("Stub!"); }
public android.util.Size getSize() { throw new RuntimeException("Stub!"); }
public android.graphics.Rect getRect() { throw new RuntimeException("Stub!"); }
public boolean equals(java.lang.Object other) { throw new RuntimeException("Stub!"); }
public boolean equals(android.hardware.camera2.params.MeteringRectangle other) { throw new RuntimeException("Stub!"); }
public int hashCode() { throw new RuntimeException("Stub!"); }
public java.lang.String toString() { throw new RuntimeException("Stub!"); }
public static final int METERING_WEIGHT_DONT_CARE = 0;
public static final int METERING_WEIGHT_MAX = 1000;
public static final int METERING_WEIGHT_MIN = 0;
}
|