org.virtualbox_7_0
Enum RecordingVideoCodec

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

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

Recording video codec enumeration. Interface ID: {93791063-3E8C-4310-987C-DDB43FF03FFE}


Enum Constant Summary
AV1
          AOMedia Video 1 codec.
H262
          MPEG-2, Part 2.
H264
          Advanced Video Coding (AVC), MPEG-4 Part 10.
H265
          High Efficiency Video Coding (HEVC), MPEG-H Part 2.
H266
          Versatile Video Coding (VVC), MPEG-I Part 3.
MJPEG
          Motion JPEG.
None
          No codec set.
Other
          Other codec.
VP8
          VP8 codec.
VP9
          VP9 codec.
 
Method Summary
static RecordingVideoCodec fromValue(long v)
           
static RecordingVideoCodec fromValue(java.lang.String v)
           
 int value()
           
static RecordingVideoCodec valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RecordingVideoCodec[] 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 RecordingVideoCodec None
No codec set.


MJPEG

public static final RecordingVideoCodec MJPEG
Motion JPEG.


H262

public static final RecordingVideoCodec H262
MPEG-2, Part 2.


H264

public static final RecordingVideoCodec H264
Advanced Video Coding (AVC), MPEG-4 Part 10.


H265

public static final RecordingVideoCodec H265
High Efficiency Video Coding (HEVC), MPEG-H Part 2.


H266

public static final RecordingVideoCodec H266
Versatile Video Coding (VVC), MPEG-I Part 3.


VP8

public static final RecordingVideoCodec VP8
VP8 codec.


VP9

public static final RecordingVideoCodec VP9
VP9 codec.


AV1

public static final RecordingVideoCodec AV1
AOMedia Video 1 codec.


Other

public static final RecordingVideoCodec Other
Other codec.

Method Detail

values

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

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

valueOf

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

fromValue

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