com.groupdocs.metadata.core

Interfaces

Classes

Enums

Exceptions

com.groupdocs.metadata.core

Enum MatroskaVideoStereoMode

    • Enum Constant Detail

      • SideBySideLeft

        public static final MatroskaVideoStereoMode SideBySideLeft

        Side by side (left eye first) video mode.

      • TopBottomRight

        public static final MatroskaVideoStereoMode TopBottomRight

        Top - bottom (right eye is first) video mode.

      • TopBottomLeft

        public static final MatroskaVideoStereoMode TopBottomLeft

        Top - bottom (left eye is first) video mode.

      • CheckboardRight

        public static final MatroskaVideoStereoMode CheckboardRight

        Checkboard (right eye is first) video mode.

      • CheckboardLleft

        public static final MatroskaVideoStereoMode CheckboardLleft

        Checkboard (left eye is first) video mode.

      • RowInterleavedRight

        public static final MatroskaVideoStereoMode RowInterleavedRight

        Row interleaved (right eye is first) video mode.

      • RowInterleavedLeft

        public static final MatroskaVideoStereoMode RowInterleavedLeft

        Row interleaved (left eye is first) video mode.

      • ColumnInterleavedRight

        public static final MatroskaVideoStereoMode ColumnInterleavedRight

        Column interleaved (right eye is first) video mode.

      • ColumnInterleavedLeft

        public static final MatroskaVideoStereoMode ColumnInterleavedLeft

        Column interleaved (left eye is first) video mode.

      • SideBySideRight

        public static final MatroskaVideoStereoMode SideBySideRight

        Side by side (right eye first) video mode.

      • AnaglyphGreenMagenta

        public static final MatroskaVideoStereoMode AnaglyphGreenMagenta

        Anaglyph (green/magenta) video mode.

      • BothEyesLacedLeft

        public static final MatroskaVideoStereoMode BothEyesLacedLeft

        Both eyes laced in one Block (left eye is first) video mode.

      • BothEyesLacedRight

        public static final MatroskaVideoStereoMode BothEyesLacedRight

        Both eyes laced in one Block (right eye is first) video mode.

    • Method Detail

      • values

        public static MatroskaVideoStereoMode[] 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 (MatroskaVideoStereoMode c : MatroskaVideoStereoMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MatroskaVideoStereoMode valueOf(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getAllValues

        public Object[] getAllValues()
        Description copied from interface: IEnumValue

        Returns the array of all values defined in the class.

        Specified by:
        getAllValues in interface IEnumValue
        Returns:
        The array of all values defined in the class.
      • getEnumValueByRawValue

        public IEnumValue getEnumValueByRawValue(int rawValue)
        Description copied from interface: IEnumValue

        Returns the enumeration value by the raw value associated with it.

        Specified by:
        getEnumValueByRawValue in interface IEnumValue
        Parameters:
        rawValue - The raw value.
        Returns:
        The enumeration value.
      • getEnumValueByName

        public IEnumValue getEnumValueByName(String name)
        Description copied from interface: IEnumValue

        Returns the enumeration value by its name.

        Specified by:
        getEnumValueByName in interface IEnumValue
        Parameters:
        name - The name of the enumeration value.
        Returns:
        The enumeration value.
      • getRawValueType

        public RawIntegerType getRawValueType()
        Description copied from interface: IEnumValue

        Returns the underlying type of the raw value of this enumeration value.

        Specified by:
        getRawValueType in interface IEnumValue
        Returns:
        The underlying type of the raw value.
      • getRawValue

        public int getRawValue()
        Description copied from interface: IEnumValue

        Returns the raw value of this enumeration value.

        Specified by:
        getRawValue in interface IEnumValue
        Returns:
        The raw value.