Class View
- java.lang.Object
-
- org.opennms.netmgt.config.siteStatusViews.View
-
- All Implemented Interfaces:
Serializable
public class View extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description View()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addRow(String rowLabel, String... categories)
void
addRow(RowDef row)
boolean
equals(Object obj)
String
getColumnName()
String
getColumnType()
Optional<String>
getColumnValue()
String
getName()
List<RowDef>
getRows()
String
getTableName()
int
hashCode()
boolean
removeRow(RowDef row)
void
setColumnName(String columnName)
void
setColumnType(String columnType)
void
setColumnValue(String columnValue)
void
setName(String name)
void
setRows(List<RowDef> rows)
void
setTableName(String tableName)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getTableName
public String getTableName()
-
setTableName
public void setTableName(String tableName)
-
getColumnName
public String getColumnName()
-
setColumnName
public void setColumnName(String columnName)
-
getColumnType
public String getColumnType()
-
setColumnType
public void setColumnType(String columnType)
-
setColumnValue
public void setColumnValue(String columnValue)
-
addRow
public void addRow(RowDef row)
-
removeRow
public boolean removeRow(RowDef row)
-
-