Package org.cxml
Class FeeDetail
- java.lang.Object
-
- org.cxml.FeeDetail
-
public class FeeDetail extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringisRecurringprotected Periodperiodprotected java.util.List<UnitRate>unitRate
-
Constructor Summary
Constructors Constructor Description FeeDetail()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetIsRecurring()Gets the value of the isRecurring property.PeriodgetPeriod()Gets the value of the period property.java.util.List<UnitRate>getUnitRate()Gets the value of the unitRate property.voidsetIsRecurring(java.lang.String value)Sets the value of the isRecurring property.voidsetPeriod(Period value)Sets the value of the period property.
-
-
-
Method Detail
-
getIsRecurring
public java.lang.String getIsRecurring()
Gets the value of the isRecurring property.- Returns:
- possible object is
String
-
setIsRecurring
public void setIsRecurring(java.lang.String value)
Sets the value of the isRecurring property.- Parameters:
value- allowed object isString
-
getUnitRate
public java.util.List<UnitRate> getUnitRate()
Gets the value of the unitRate property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the unitRate property.For example, to add a new item, do as follows:
getUnitRate().add(newItem);Objects of the following type(s) are allowed in the list
UnitRate
-
getPeriod
public Period getPeriod()
Gets the value of the period property.- Returns:
- possible object is
Period
-
-