Class ColumnValueGenerator
- java.lang.Object
-
- com.nuix.superutilities.reporting.ColumnValueGenerator
-
- Direct Known Subclasses:
ScriptedColumnValueGenerator
public class ColumnValueGenerator extends java.lang.Object
Base class for reporting. You should not use this class directly, but instead use classes derived from it.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
columnLabel
protected java.lang.String
label
-
Constructor Summary
Constructors Constructor Description ColumnValueGenerator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
generateValue(nuix.Case nuixCase, java.lang.String query)
java.lang.String
getColumnLabel()
java.lang.String
getLabel()
Gets the label associated to this instance.void
setColumnLabel(java.lang.String categoryLabel)
void
setLabel(java.lang.String label)
Sets the label associated to this instance
-
-
-
Method Detail
-
generateValue
public java.lang.Object generateValue(nuix.Case nuixCase, java.lang.String query)
-
getLabel
public java.lang.String getLabel()
Gets the label associated to this instance.- Returns:
- The associated label
-
getColumnLabel
public java.lang.String getColumnLabel()
-
setLabel
public void setLabel(java.lang.String label)
Sets the label associated to this instance- Parameters:
label
- The label to associate
-
setColumnLabel
public void setColumnLabel(java.lang.String categoryLabel)
-
-