org.virtualbox_6_1
Enum RecordingVideoScalingMethod

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

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

Recording video scaling method enumeration. Interface ID: {5576D890-48EE-449A-A81B-B776233598B7}


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 RecordingVideoScalingMethod fromValue(long v)
           
static RecordingVideoScalingMethod fromValue(java.lang.String v)
           
 int value()
           
static RecordingVideoScalingMethod valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RecordingVideoScalingMethod[] 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 RecordingVideoScalingMethod None
No scaling performed.


NearestNeighbor

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


Bilinear

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


Bicubic

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

Method Detail

values

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

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

valueOf

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

fromValue

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