org.virtualbox_7_0
Enum RecordingVideoScalingMode

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

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

Recording video scaling method enumeration. Interface ID: {0DD1127D-4F62-4B82-BEEE-91086A9F1D24}


Enum Constant Summary
Bicubic
          Performs scaling via bicubic interpolation.
Bilinear
          Performs scaling via bilinear interpolation.
NearestNeighbor
          Performs scaling via nearest-neighbor interpolation.
None
          No scaling performed.
 
Method Summary
static RecordingVideoScalingMode fromValue(long v)
           
static RecordingVideoScalingMode fromValue(java.lang.String v)
           
 int value()
           
static RecordingVideoScalingMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RecordingVideoScalingMode[] 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

None

public static final RecordingVideoScalingMode None
No scaling performed. The image wil be cropped when the source is bigger than the target size.


NearestNeighbor

public static final RecordingVideoScalingMode NearestNeighbor
Performs scaling via nearest-neighbor interpolation. Not yet implemented.


Bilinear

public static final RecordingVideoScalingMode Bilinear
Performs scaling via bilinear interpolation. Not yet implemented.


Bicubic

public static final RecordingVideoScalingMode Bicubic
Performs scaling via bicubic interpolation. Not yet implemented.

Method Detail

values

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

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

valueOf

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

fromValue

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