public static final class BufferCapabilities.FlipContents extends Object
Modifier and Type | Field and Description |
---|---|
static BufferCapabilities.FlipContents |
BACKGROUND
When flip contents are
BACKGROUND , the
contents of the back buffer are cleared with the background color after
flipping. |
static BufferCapabilities.FlipContents |
COPIED
When flip contents are
COPIED , the
contents of the back buffer are copied to the front buffer when
flipping. |
static 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.FlipContents |
UNDEFINED
When flip contents are
UNDEFINED , the
contents of the back buffer are undefined after flipping. |
Modifier and Type | Method and Description |
---|---|
int |
hashCode()
Answers an integer hash code for the receiver.
|
String |
toString()
Answers a string containing a concise, human-readable
description of the receiver.
|
public static final BufferCapabilities.FlipContents UNDEFINED
UNDEFINED
, the
contents of the back buffer are undefined after flipping.public static final BufferCapabilities.FlipContents BACKGROUND
BACKGROUND
, the
contents of the back buffer are cleared with the background color after
flipping.public static final BufferCapabilities.FlipContents PRIOR
PRIOR
, the
contents of the back buffer are the prior contents of the front buffer
(a true page flip).public static final BufferCapabilities.FlipContents COPIED
COPIED
, the
contents of the back buffer are copied to the front buffer when
flipping.public int hashCode()
Object
true
when passed to
.equals
must answer the same value for this
method.hashCode
in class Object
Object.equals(java.lang.Object)
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2023, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.