Package org.bedework.jsforj.model
Interface JSProperty<T extends JSValue>
-
- All Known Subinterfaces:
JSPatch<T>
- All Known Implementing Classes:
JSPropertyImpl
public interface JSProperty<T extends JSValue>User: mike Date: 10/23/19 Time: 13:25
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JSProperty<T>copy()StringgetName()StringgetType()TgetValue()Returns values as Objects - all int and boolean values will be returned as the corresponding object class.
-
-
-
Method Detail
-
getName
String getName()
- Returns:
- String name of the property
-
getType
String getType()
- Returns:
- the type of the value
-
getValue
T getValue()
Returns values as Objects - all int and boolean values will be returned as the corresponding object class.- Returns:
- the value of the property
-
copy
JSProperty<T> copy()
-
-