-
- All Implemented Interfaces:
-
java.io.Serializable
,java.lang.Comparable
public enum Video.ProjectionFormat
The list of known projection formats.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUIRECTANGULAR
Standard equi-rectangular 360 degree projection format.
NORMAL
Normal projection format.
-
Method Summary
Modifier and Type Method Description String
toString()
Overrides the base implementation to return the name of the format as string. static Video.ProjectionFormat
parse(@Nullable() Object value, @Nullable() Video.ProjectionFormat defaultProjectionFormat)
Matches the given value to list of known projection format names. static Video.ProjectionFormat
parse(@Nullable() Object value)
Matches the given value to list of known projection format names. static Array<Video.ProjectionFormat>
values()
static Video.ProjectionFormat
valueOf(String name)
-
-
Method Detail
-
toString
String toString()
Overrides the base implementation to return the name of the format as string.
-
parse
@Nullable() static Video.ProjectionFormat parse(@Nullable() Object value, @Nullable() Video.ProjectionFormat defaultProjectionFormat)
Matches the given value to list of known projection format names.
- Parameters:
value
- the value to be matches.defaultProjectionFormat
- the value that will be returned if the given value does not matchany of the known projection format names.
-
parse
@Nullable() static Video.ProjectionFormat parse(@Nullable() Object value)
Matches the given value to list of known projection format names.
- Parameters:
value
- the value to be matches.
-
values
static Array<Video.ProjectionFormat> values()
-
valueOf
static Video.ProjectionFormat valueOf(String name)
-
-
-
-