public enum RecordingVideoScalingMethod extends java.lang.Enum<RecordingVideoScalingMethod>
| Enum Constant and Description |
|---|
Bicubic
Performs scaling via bicubic interpolation.
|
Bilinear
Performs scaling via bilinear interpolation.
|
NearestNeighbor
Performs scaling via nearest-neighbor interpolation.
|
None
No scaling performed.
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final RecordingVideoScalingMethod None
public static final RecordingVideoScalingMethod NearestNeighbor
public static final RecordingVideoScalingMethod Bilinear
public static final RecordingVideoScalingMethod Bicubic
public static RecordingVideoScalingMethod[] values()
for (RecordingVideoScalingMethod c : RecordingVideoScalingMethod.values()) System.out.println(c);
public static RecordingVideoScalingMethod valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int value()
public static RecordingVideoScalingMethod fromValue(long v)
public static RecordingVideoScalingMethod fromValue(java.lang.String v)