Package org.opennms.netmgt.rrd.model
Class XMeta
- java.lang.Object
-
- org.opennms.netmgt.rrd.model.XMeta
-
public class XMeta extends Object
The Class Meta.- Author:
- Alejandro Galue
-
-
Constructor Summary
Constructors Constructor Description XMeta()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
getColumns()
Gets the columns.Long
getEnd()
Gets the end.List<String>
getLegends()
Gets the legend entries.Long
getRows()
Gets the rows.Long
getStart()
Gets the start.Long
getStep()
Gets the step.void
setColumns(Long columns)
Sets the columns.void
setEnd(Long end)
Sets the end.void
setLegends(List<String> entries)
Sets the legend entries.void
setRows(Long rows)
Sets the rows.void
setStart(Long start)
Sets the start.void
setStep(Long step)
Sets the step.
-
-
-
Method Detail
-
getStart
public Long getStart()
Gets the start.The start time expressed in seconds since 1970-01-01 UTC.
- Returns:
- the start
-
setStart
public void setStart(Long start)
Sets the start.- Parameters:
start
- the new start
-
getEnd
public Long getEnd()
Gets the end.The end time expressed in seconds since 1970-01-01 UTC
- Returns:
- the end
-
setEnd
public void setEnd(Long end)
Sets the end.- Parameters:
end
- the new end
-
getStep
public Long getStep()
Gets the step.The step (interval) time expressed in seconds
- Returns:
- the step
-
setStep
public void setStep(Long step)
Sets the step.- Parameters:
step
- the new step
-
getRows
public Long getRows()
Gets the rows.- Returns:
- the rows
-
setRows
public void setRows(Long rows)
Sets the rows.- Parameters:
rows
- the new rows
-
getColumns
public Long getColumns()
Gets the columns.- Returns:
- the columns
-
setColumns
public void setColumns(Long columns)
Sets the columns.- Parameters:
columns
- the new columns
-
-