org.virtualbox_7_0
Enum ScreenLayoutMode

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

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

HowIDisplay.setScreenLayout(org.virtualbox_7_0.ScreenLayoutMode,List)method should work. Interface ID: {8FA1964C-8774-11E9-AE5D-1F419105E68D}


Enum Constant Summary
Apply
          If the guest is already at desired mode then the API might avoid setting the mode.
Attach
          Attach new screens and always set the new mode for existing screens.
Reset
          Always set the new mode even if the guest is already at desired mode.
Silent
          Do not notify the guest of the change.
 
Method Summary
static ScreenLayoutMode fromValue(long v)
           
static ScreenLayoutMode fromValue(java.lang.String v)
           
 int value()
           
static ScreenLayoutMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScreenLayoutMode[] 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

Apply

public static final ScreenLayoutMode Apply
If the guest is already at desired mode then the API might avoid setting the mode.


Reset

public static final ScreenLayoutMode Reset
Always set the new mode even if the guest is already at desired mode.


Attach

public static final ScreenLayoutMode Attach
Attach new screens and always set the new mode for existing screens.


Silent

public static final ScreenLayoutMode Silent
Do not notify the guest of the change. Normally this is wished, but it might not be when re-setting monitor information from the last session (no hotplug happened, as it is still the same virtual monitor).

Method Detail

values

public static ScreenLayoutMode[] 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 (ScreenLayoutMode c : ScreenLayoutMode.values())
    System.out.println(c);

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

valueOf

public static ScreenLayoutMode 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 ScreenLayoutMode fromValue(long v)

fromValue

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