Class RenderView
- java.lang.Object
-
- org.nuxeo.ecm.platform.threed.service.RenderView
-
- All Implemented Interfaces:
Comparable<RenderView>
public class RenderView extends Object implements Comparable<RenderView>
Object representing a registered render view conversion on theThreeDService
. AnRenderView
references the spherical coordinates and if it should be a Rendition.- Since:
- 8.4
-
-
Constructor Summary
Constructors Constructor Description RenderView()
RenderView(RenderView other)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(RenderView o)
Integer
getAzimuth()
Integer
getHeight()
String
getId()
String
getName()
Integer
getWidth()
Integer
getZenith()
boolean
isEnabled()
boolean
isRendition()
boolean
isRenditionVisible()
void
merge(RenderView src)
void
setAzimuth(Integer azimuth)
void
setEnabled(boolean enabled)
void
setHeight(Integer height)
void
setName(String name)
void
setRendition(boolean rendition)
void
setRenditionVisible(boolean renditionVisible)
void
setWidth(Integer width)
void
setZenith(Integer zenith)
-
-
-
Constructor Detail
-
RenderView
public RenderView(RenderView other)
-
RenderView
public RenderView()
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getZenith
public Integer getZenith()
-
setZenith
public void setZenith(Integer zenith)
-
getAzimuth
public Integer getAzimuth()
-
setAzimuth
public void setAzimuth(Integer azimuth)
-
getWidth
public Integer getWidth()
-
setWidth
public void setWidth(Integer width)
-
getHeight
public Integer getHeight()
-
setHeight
public void setHeight(Integer height)
-
isEnabled
public boolean isEnabled()
-
setEnabled
public void setEnabled(boolean enabled)
-
isRendition
public boolean isRendition()
-
setRendition
public void setRendition(boolean rendition)
-
isRenditionVisible
public boolean isRenditionVisible()
-
setRenditionVisible
public void setRenditionVisible(boolean renditionVisible)
-
merge
public void merge(RenderView src)
-
getId
public String getId()
-
compareTo
public int compareTo(RenderView o)
- Specified by:
compareTo
in interfaceComparable<RenderView>
-
-