Package org.jivesoftware.smackx.search
Class ReportedData.Column
- java.lang.Object
-
- org.jivesoftware.smackx.search.ReportedData.Column
-
- Enclosing class:
- ReportedData
public static class ReportedData.Column extends java.lang.Object
Represents the columns definition of the reported data.
-
-
Constructor Summary
Constructors Constructor Description Column(java.lang.String label, java.lang.String variable, FormField.Type type)Creates a new column with the specified definition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetLabel()Returns the column's label.FormField.TypegetType()Returns the column's data format.java.lang.StringgetVariable()Returns the variable name that the column is showing.
-
-
-
Constructor Detail
-
Column
public Column(java.lang.String label, java.lang.String variable, FormField.Type type)
Creates a new column with the specified definition.- Parameters:
label- the columns's label.variable- the variable name of the column.type- the format for the returned data.
-
-
Method Detail
-
getLabel
public java.lang.String getLabel()
Returns the column's label.- Returns:
- label of the column.
-
getType
public FormField.Type getType()
Returns the column's data format.- Returns:
- format for the returned data.
-
getVariable
public java.lang.String getVariable()
Returns the variable name that the column is showing.- Returns:
- the variable name of the column.
-
-