public class

CameraDataImpl

extends Object
implements Serializable CameraData JPAEntity
java.lang.Object
   ↳ vars.annotation.jpa.CameraDataImpl

Summary

[Expand]
Inherited Constants
From interface vars.annotation.CameraData
Public Constructors
CameraDataImpl()
Public Methods
boolean containsData()
Check to verfiy that a cameradata object contains data.
String getDirection()
Get the CameraData direction.
Double getFieldWidth()
Get the CameraData field width.
Integer getFocus()
Get the CameraData focus.
Float getHeading()
Long getId()
String getImageReference()
Get the String of the Still Image captured by this CameraData.
Integer getIris()
Get the CameraData iris.
Date getLogDate()
String getName()
Get the String name for this CameraData object.
Float getPitch()
Object getPrimaryKey()
Float getRoll()
VideoFrame getVideoFrame()
Float getViewHeight()
String getViewUnits()
Float getViewWidth()
Float getX()
String getXYUnits()
Float getY()
Float getZ()
String getZUnits()
Integer getZoom()
Get the CameraData zoom.
void setDirection(String direction)

Set CameraData direction.

void setFieldWidth(Double fieldWidth)
Set CameraData field width.
void setFocus(Integer focus)
Set CameraData focus.
void setHeading(Float heading)
void setId(Long id)
void setImageReference(String stillImage)
Set String of the Still Image URL captured by this CameraData.
void setIris(Integer iris)
Set CameraData iris.
void setLogDate(Date logDate)
void setName(String name)

Set the name of the camera used to capture the related video tape.

void setPitch(Float pitch)
void setRoll(Float roll)
void setViewHeight(Float height)
void setViewUnits(String units)
void setViewWidth(Float width)
void setX(Float x)
void setXYUnits(String units)
void setY(Float y)
void setZ(Float z)
void setZUnits(String units)
void setZoom(Integer zoom)
Set CameraData zoom.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object
From interface vars.VARSObject
From interface vars.annotation.CameraData
From interface vars.jpa.JPAEntity

Public Constructors

public CameraDataImpl ()

Public Methods

public boolean containsData ()

Check to verfiy that a cameradata object contains data.

Returns
  • false if the data values (name, direction, zoom, iris, fieldWidth, and stillImage) are all null. true if any of these values are not null

public String getDirection ()

Get the CameraData direction.

Returns
  • The String value of CameraData direction.

public Double getFieldWidth ()

Get the CameraData field width.

Returns
  • The double value of CameraData field width.

public Integer getFocus ()

Get the CameraData focus.

Returns
  • The integer value of CameraData focus.

public Float getHeading ()

public Long getId ()

public String getImageReference ()

Get the String of the Still Image captured by this CameraData.

Returns
  • The String of the Still Image URL captured by this CameraData.

public Integer getIris ()

Get the CameraData iris.

Returns
  • The integer value of CameraData iris.

public Date getLogDate ()

public String getName ()

Get the String name for this CameraData object.

Returns
  • The String name for this CameraData object.

public Float getPitch ()

public Object getPrimaryKey ()

public Float getRoll ()

public VideoFrame getVideoFrame ()

public Float getViewHeight ()

public String getViewUnits ()

public Float getViewWidth ()

public Float getX ()

public String getXYUnits ()

public Float getY ()

public Float getZ ()

public String getZUnits ()

public Integer getZoom ()

Get the CameraData zoom.

Returns
  • The integer value of CameraData zoom.

public void setDirection (String direction)

Set CameraData direction. This is typically a string such as 'ascending', 'descending', 'or cruise'. WARNING: Names longer than 50 characters will be truncated

public void setFieldWidth (Double fieldWidth)

Set CameraData field width.

Parameters
fieldWidth The double value of camera field width.

public void setFocus (Integer focus)

Set CameraData focus.

Parameters
focus The integer value of camera focus.

public void setHeading (Float heading)

public void setId (Long id)

public void setImageReference (String stillImage)

Set String of the Still Image URL captured by this CameraData.

public void setIris (Integer iris)

Set CameraData iris.

Parameters
iris The integer value of camera iris.

public void setLogDate (Date logDate)

public void setName (String name)

Set the name of the camera used to capture the related video tape. WARNING: Names longer than 50 characters will be truncated

Parameters
name The String name of the camera used to capture the related video tape.

public void setPitch (Float pitch)

public void setRoll (Float roll)

public void setViewHeight (Float height)

public void setViewUnits (String units)

public void setViewWidth (Float width)

public void setX (Float x)

public void setXYUnits (String units)

public void setY (Float y)

public void setZ (Float z)

public void setZUnits (String units)

public void setZoom (Integer zoom)

Set CameraData zoom.

Parameters
zoom The integer value of camera zoom.

public String toString ()