| Package | Description |
|---|---|
| java.awt |
Contains all of the classes for creating user interfaces and for painting graphics and images.
|
| Modifier and Type | Field and Description |
|---|---|
static BufferCapabilities |
BufferCapabilities.FlipContents.BACKGROUND
When flip contents are
BACKGROUND, the contents of the back buffer are cleared with the background color after flipping.
|
static BufferCapabilities |
BufferCapabilities.FlipContents.COPIED
When flip contents are
COPIED, the contents of the back buffer are copied to the front buffer when flipping.
|
static BufferCapabilities |
BufferCapabilities.FlipContents.PRIOR
When flip contents are
PRIOR, the contents of the back buffer are the prior contents of the front buffer (a true page flip).
|
static BufferCapabilities |
BufferCapabilities.FlipContents.UNDEFINED
When flip contents are
UNDEFINED, the contents of the back buffer are undefined after flipping.
|
| Modifier and Type | Method and Description |
|---|---|
BufferCapabilities |
BufferCapabilities.getFlipContents()
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
Component.FlipBufferStrategy.flip(BufferCapabilities
Flipping moves the contents of the back buffer to the front buffer, either by copying or by moving the video pointer.
|
| Constructor and Description | |
|---|---|
BufferCapabilities(ImageCapabilities
Creates a new object for specifying buffering capabilities
|