Package org.ffmpeg.ffprobe
Class LibraryVersionType
- java.lang.Object
-
- org.ffmpeg.ffprobe.LibraryVersionType
-
public class LibraryVersionType extends Object
Java class for libraryVersionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="libraryVersionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="major" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="minor" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="micro" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="ident" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description LibraryVersionType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetIdent()Gets the value of the ident property.intgetMajor()Gets the value of the major property.intgetMicro()Gets the value of the micro property.intgetMinor()Gets the value of the minor property.StringgetName()Gets the value of the name property.intgetVersion()Gets the value of the version property.voidsetIdent(String value)Sets the value of the ident property.voidsetMajor(int value)Sets the value of the major property.voidsetMicro(int value)Sets the value of the micro property.voidsetMinor(int value)Sets the value of the minor property.voidsetName(String value)Sets the value of the name property.voidsetVersion(int value)Sets the value of the version property.
-
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getMajor
public int getMajor()
Gets the value of the major property.
-
setMajor
public void setMajor(int value)
Sets the value of the major property.
-
getMinor
public int getMinor()
Gets the value of the minor property.
-
setMinor
public void setMinor(int value)
Sets the value of the minor property.
-
getMicro
public int getMicro()
Gets the value of the micro property.
-
setMicro
public void setMicro(int value)
Sets the value of the micro property.
-
getVersion
public int getVersion()
Gets the value of the version property.
-
setVersion
public void setVersion(int value)
Sets the value of the version property.
-
getIdent
public String getIdent()
Gets the value of the ident property.- Returns:
- possible object is
String
-
-