Interface FieldNature
-
- All Known Implementing Classes:
ActionFieldFunction,ActionFieldValue,ActionWorkItemFieldValue
public interface FieldNature
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetField()intgetNature()StringgetType()StringgetValue()booleanisFormula()This will return true if the value is really a "formula" - in the sense of like an excel spreadsheet.voidsetField(String field)voidsetNature(int nature)voidsetType(String type)voidsetValue(String value)
-
-
-
Method Detail
-
isFormula
boolean isFormula()
This will return true if the value is really a "formula" - in the sense of like an excel spreadsheet. If it IS a formula, then the value should never be turned into a string, always left as-is.
-
getField
String getField()
-
setField
void setField(String field)
-
getValue
String getValue()
-
setValue
void setValue(String value)
-
getNature
int getNature()
-
setNature
void setNature(int nature)
-
getType
String getType()
-
setType
void setType(String type)
-
-