Package com.aquima.web.api.model.page
Class FieldValue
- java.lang.Object
-
- com.aquima.web.api.model.page.FieldValue
-
public class FieldValue extends Object
This class represents a single event value on a page event.- Since:
- 9.2
- Author:
- A.Pragt
-
-
Constructor Summary
Constructors Constructor Description FieldValue()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
This method returns the element key this value belongs to.List<String>
getValues()
This method returns the values for the event.void
setKey(String key)
This method sets the element key.void
setValues(List<String> values)
This method sets the values of the event.
-
-
-
Method Detail
-
getKey
public String getKey()
This method returns the element key this value belongs to.- Returns:
- The key of the element.
-
setKey
public void setKey(String key)
This method sets the element key.- Parameters:
key
- The key of the element.
-
getValues
public List<String> getValues()
This method returns the values for the event.- Returns:
- The values.
-
-