Class Rrd
- java.lang.Object
-
- org.opennms.netmgt.config.datacollction.nsclient.Rrd
-
public class Rrd extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="rra" maxOccurs="unbounded"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <pattern value="RRA:(AVERAGE|MIN|MAX|LAST):.*"/> </restriction> </simpleType> </element> </sequence> <attribute name="step" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Rrd()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
List<String>
getRra()
Gets the value of the rra property.int
getStep()
Gets the value of the step property.int
hashCode()
void
setStep(int value)
Sets the value of the step property.
-
-
-
Method Detail
-
getRra
public List<String> getRra()
Gets the value of the rra 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
set
method for the rra property.For example, to add a new item, do as follows:
getRra().add(newItem);
Objects of the following type(s) are allowed in the list
String
-
getStep
public int getStep()
Gets the value of the step property.
-
setStep
public void setStep(int value)
Sets the value of the step property.
-
-