org.gstreamer
Class Version

java.lang.Object
  extended by org.gstreamer.Version

public class Version
extends java.lang.Object

Describes the version of gstreamer currently in use.


Constructor Summary
Version(long major, long minor, long micro, long nano)
           
 
Method Summary
 long getMajor()
          Gets the major version of GStreamer at compile time.
 long getMicro()
          Gets the micro version of GStreamer at compile time.
 long getMinor()
          Gets the minor version of GStreamer at compile time.
 long getNano()
          Gets the nano version of GStreamer at compile time.
 java.lang.String toString()
          Gets a string representation of the version.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Version

public Version(long major,
               long minor,
               long micro,
               long nano)
Method Detail

toString

public java.lang.String toString()
Gets a string representation of the version.

Overrides:
toString in class java.lang.Object
Returns:
a string representing the version.

getMajor

public long getMajor()
Gets the major version of GStreamer at compile time.

Returns:
the major version.

getMinor

public long getMinor()
Gets the minor version of GStreamer at compile time.

Returns:
the minor version.

getMicro

public long getMicro()
Gets the micro version of GStreamer at compile time.

Returns:
the micro version.

getNano

public long getNano()
Gets the nano version of GStreamer at compile time.

Returns:
the nano version.