Class StreamSize
- Object
-
- StreamSize
-
public final class StreamSize extends Object
StreamSize class representing the dimensions of a video stream
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getHeight()
Retrieve the current height of the streamint
getWidth()
Retrieve the current width of the streamString
toString()
Retrieve a formatted String representing the width X height of the stream
-
-
-
Method Detail
-
getWidth
public int getWidth()
Retrieve the current width of the stream- Returns:
- an integer representing the width of the stream
-
getHeight
public int getHeight()
Retrieve the current height of the stream- Returns:
- an integer representing the height of the stream
-
toString
public String toString()
Retrieve a formatted String representing the width X height of the stream- Overrides:
toString
in classObject
- Returns:
- an formatted String representing the width X height of the stream
-
-