java.lang.Object
java.awt.BufferCapabilities.FlipContents
- Enclosing class:
- BufferCapabilities
A type-safe enumeration of the possible back buffer contents after
page-flipping
- Since:
- 1.4
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final BufferCapabilities.FlipContents
When flip contents areBACKGROUND
, the contents of the back buffer are cleared with the background color after flipping.static final BufferCapabilities.FlipContents
When flip contents areCOPIED
, the contents of the back buffer are copied to the front buffer when flipping.static final BufferCapabilities.FlipContents
When flip contents arePRIOR
, the contents of the back buffer are the prior contents of the front buffer (a true page flip).static final BufferCapabilities.FlipContents
When flip contents areUNDEFINED
, the contents of the back buffer are undefined after flipping. -
Method Summary
-
Field Details
-
UNDEFINED
When flip contents areUNDEFINED
, the contents of the back buffer are undefined after flipping. -
BACKGROUND
When flip contents areBACKGROUND
, the contents of the back buffer are cleared with the background color after flipping. -
PRIOR
When flip contents arePRIOR
, the contents of the back buffer are the prior contents of the front buffer (a true page flip). -
COPIED
When flip contents areCOPIED
, the contents of the back buffer are copied to the front buffer when flipping.
-
-
Method Details
-
hashCode
public int hashCode()Description copied from class:Object
Answers an integer hash code for the receiver. Any two objects which answertrue
when passed to.equals
must answer the same value for this method. -
toString
Description copied from class:Object
Answers a string containing a concise, human-readable description of the receiver.
-