Class ChapterType

java.lang.Object
org.ffmpeg.ffprobe700.ChapterType

public class ChapterType extends Object

Java class for chapterType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="chapterType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="tags" type="{http://www.ffmpeg.org/schema/ffprobe}tagsType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
       <attribute name="time_base" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="start" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
       <attribute name="start_time" type="{http://www.w3.org/2001/XMLSchema}float" />
       <attribute name="end" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
       <attribute name="end_time" use="required" type="{http://www.w3.org/2001/XMLSchema}float" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • tags

      protected List<TagsType> tags
    • id

      protected int id
    • timeBase

      protected String timeBase
    • start

      protected int start
    • startTime

      protected Float startTime
    • end

      protected int end
    • endTime

      protected float endTime
  • Constructor Details

    • ChapterType

      public ChapterType()
  • Method Details

    • getTags

      public List<TagsType> getTags()
      Gets the value of the tags property.

      This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the tags property.

      For example, to add a new item, do as follows:

          getTags().add(newItem);
       

      Objects of the following type(s) are allowed in the list TagsType

    • getId

      public int getId()
      Gets the value of the id property.
    • setId

      public void setId(int value)
      Sets the value of the id property.
    • getTimeBase

      public String getTimeBase()
      Gets the value of the timeBase property.
      Returns:
      possible object is String
    • setTimeBase

      public void setTimeBase(String value)
      Sets the value of the timeBase property.
      Parameters:
      value - allowed object is String
    • getStart

      public int getStart()
      Gets the value of the start property.
    • setStart

      public void setStart(int value)
      Sets the value of the start property.
    • getStartTime

      public Float getStartTime()
      Gets the value of the startTime property.
      Returns:
      possible object is Float
    • setStartTime

      public void setStartTime(Float value)
      Sets the value of the startTime property.
      Parameters:
      value - allowed object is Float
    • getEnd

      public int getEnd()
      Gets the value of the end property.
    • setEnd

      public void setEnd(int value)
      Sets the value of the end property.
    • getEndTime

      public float getEndTime()
      Gets the value of the endTime property.
    • setEndTime

      public void setEndTime(float value)
      Sets the value of the endTime property.