Package com.inteliqua.rest.common.update
Class UpdateField<T>
- java.lang.Object
-
- com.inteliqua.rest.common.update.UpdateField<T>
-
- Type Parameters:
T- The type of the value to be stored in the update field.
- All Implemented Interfaces:
Serializable
public class UpdateField<T> extends Object implements Serializable
Represents a field that is updated within a resource.This class is used to encapsulate the value of a specific field that needs to be updated in a resource. It allows any type of value to be set and retrieved, as it is a generic class.
- Author:
- nikritikos
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateField()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TgetValue()Gets the value of the update field.voidsetValue(T value)Sets the value of the update field.StringtoString()Returns a string representation of the update field's value.
-