Package com.victorvalentim.zividomelive
Enum Class ziviDomeLive.StandardOutputAspectMode
java.lang.Object
java.lang.Enum<ziviDomeLive.StandardOutputAspectMode>
com.victorvalentim.zividomelive.ziviDomeLive.StandardOutputAspectMode
- All Implemented Interfaces:
Serializable,Comparable<ziviDomeLive.StandardOutputAspectMode>,Constable
- Enclosing class:
- ziviDomeLive
public static enum ziviDomeLive.StandardOutputAspectMode
extends Enum<ziviDomeLive.StandardOutputAspectMode>
Aspect policy used to compute Standard output dimensions.
API stability: Stable.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionForce 1:1 output dimensions.Force 16:10 output dimensions.Force 16:9 output dimensions.Force 4:3 output dimensions.Snap to the closest supported family based on the current logical window ratio. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AUTO
Snap to the closest supported family based on the current logical window ratio. -
ASPECT_16_9
Force 16:9 output dimensions. -
ASPECT_16_10
Force 16:10 output dimensions. -
ASPECT_4_3
Force 4:3 output dimensions. -
ASPECT_1_1
Force 1:1 output dimensions.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-