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