Enum Class CuePoint.PositionType

java.lang.Object
java.lang.Enum<CuePoint.PositionType>
com.brightcove.player.model.CuePoint.PositionType
All Implemented Interfaces:
Serializable, Comparable<CuePoint.PositionType>, Constable
Enclosing class:
CuePoint

public static enum CuePoint.PositionType extends Enum<CuePoint.PositionType>
Indicates the position of the cue point in relation to the entire video.
  • Enum Constant Details

    • BEFORE

      public static final CuePoint.PositionType BEFORE
      Pre-roll, plays before the main content of the video.
    • POINT_IN_TIME

      public static final CuePoint.PositionType POINT_IN_TIME
      Mid-roll, plays during the video at a specified offset from the start of the video.
    • AFTER

      public static final CuePoint.PositionType AFTER
      Post-roll, plays after the main content of the video.
  • Method Details

    • values

      public static CuePoint.PositionType[] 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

      public static CuePoint.PositionType valueOf(String name)
      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 name
      NullPointerException - if the argument is null