org.virtualbox_5_2
Enum FramebufferCapabilities

java.lang.Object
  extended by java.lang.Enum<FramebufferCapabilities>
      extended by org.virtualbox_5_2.FramebufferCapabilities
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FramebufferCapabilities>

public enum FramebufferCapabilities
extends java.lang.Enum<FramebufferCapabilities>

Framebuffer capability flags. Interface ID: {CC395839-30FA-4CA5-AE65-E6360E3EDD7A}


Enum Constant Summary
UpdateImage
          Requires NotifyUpdateImage.
VHWA
          Supports VHWA interface.
VisibleRegion
          Supports visible region.
 
Method Summary
static FramebufferCapabilities fromValue(long v)
           
static FramebufferCapabilities fromValue(java.lang.String v)
           
 int value()
           
static FramebufferCapabilities valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FramebufferCapabilities[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UpdateImage

public static final FramebufferCapabilities UpdateImage
Requires NotifyUpdateImage. NotifyUpdate must not be called.


VHWA

public static final FramebufferCapabilities VHWA
Supports VHWA interface. If set, then IFramebuffer::processVHWACommand can be called.


VisibleRegion

public static final FramebufferCapabilities VisibleRegion
Supports visible region. If set, then IFramebuffer::setVisibleRegion can be called.

Method Detail

values

public static FramebufferCapabilities[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (FramebufferCapabilities c : FramebufferCapabilities.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FramebufferCapabilities valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static FramebufferCapabilities fromValue(long v)

fromValue

public static FramebufferCapabilities fromValue(java.lang.String v)