java.awt
Class DisplayMode

java.lang.Object
  |
  +--java.awt.DisplayMode

public final class DisplayMode
extends Object

Unsafe:


Field Summary
static int BIT_DEPTH_MULTI
          Enabled: Value of the bit depth if multiple bit depths are supported in this dislay mode.
private  int bitDepth
           
static int REFRESH_RATE_UNKNOWN
          Enabled: Value of the refresh rate if not known
private  int refreshRate
           
private  Dimension size
           
 
Constructor Summary
DisplayMode(int width, int height, int bitDepth, int refreshRate)
          Enabled: Create a new display mode object with the supplied parameters
 
Method Summary
 boolean equals(DisplayMode dm)
          Suppressed: @return whether the two display modes are equal
 int getBitDepth()
          Enabled: @return the bit depth of the display, in bits per pixel.
 int getHeight()
          Enabled: @return the height of the display, in pixels
 int getRefreshRate()
          Enabled: @return the refresh rate of the display, in hertz.
 int getWidth()
          Enabled: @return the width of the display, in pixels
 int hashCode()
          Suppressed: @return a hash code value for this object
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

size

private Dimension size

bitDepth

private int bitDepth

refreshRate

private int refreshRate

BIT_DEPTH_MULTI

public static final int BIT_DEPTH_MULTI
Enabled: Value of the bit depth if multiple bit depths are supported in this dislay mode.

See Also:
getBitDepth()

REFRESH_RATE_UNKNOWN

public static final int REFRESH_RATE_UNKNOWN
Enabled: Value of the refresh rate if not known

See Also:
getRefreshRate()
Constructor Detail

DisplayMode

public DisplayMode(int width,
                   int height,
                   int bitDepth,
                   int refreshRate)
Enabled: Create a new display mode object with the supplied parameters

See Also:
BIT_DEPTH_MULTI, REFRESH_RATE_UNKNOWN
Method Detail

getHeight

public int getHeight()
Enabled: @return the height of the display, in pixels


getWidth

public int getWidth()
Enabled: @return the width of the display, in pixels


getBitDepth

public int getBitDepth()
Enabled: @return the bit depth of the display, in bits per pixel. This may be BIT_DEPTH_MULTI if multiple bit depths are supported in this display mode.

See Also:
BIT_DEPTH_MULTI

getRefreshRate

public int getRefreshRate()
Enabled: @return the refresh rate of the display, in hertz. This may be REFRESH_RATE_UNKNOWN if the information is not available.

See Also:
REFRESH_RATE_UNKNOWN

equals

public boolean equals(DisplayMode dm)
Suppressed: @return whether the two display modes are equal


hashCode

public int hashCode()
Suppressed: @return a hash code value for this object

Overrides:
hashCode in class Object
Returns:
a hash code value for this object.
See Also:
java.lang.Object#equals(java.lang.Object), java.util.Hashtable


comments?