Class Rrd
- java.lang.Object
-
- org.opennms.netmgt.config.vmware.vijava.Rrd
-
- All Implemented Interfaces:
java.io.Serializable
public class Rrd extends java.lang.Object implements java.io.SerializableRRD parms- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Rrd()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddRra(int index, java.lang.String vRra)voidaddRra(java.lang.String vRra)java.util.Enumeration<java.lang.String>enumerateRra()Method enumerateRra.booleanequals(java.lang.Object obj)Overrides the java.lang.Object.equals method.java.lang.String[]getRra()Method getRra.Returns the contents of the collection in an Array.java.lang.StringgetRra(int index)Method getRra.java.util.List<java.lang.String>getRraCollection()Method getRraCollection.Returns a reference to '_rraList'.intgetRraCount()Method getRraCount.java.lang.IntegergetStep()Returns the value of field 'step'.java.util.Iterator<java.lang.String>iterateRra()Method iterateRra.voidremoveAllRra()booleanremoveRra(java.lang.String vRra)Method removeRra.java.lang.StringremoveRraAt(int index)Method removeRraAt.voidsetRra(int index, java.lang.String vRra)voidsetRra(java.lang.String[] vRraArray)voidsetRra(java.util.List<java.lang.String> vRraList)Sets the value of '_rraList' by copying the given Vector.voidsetStep(int step)Sets the value of field 'step'.
-
-
-
Method Detail
-
addRra
public void addRra(java.lang.String vRra) throws java.lang.IndexOutOfBoundsException- Parameters:
vRra-- Throws:
java.lang.IndexOutOfBoundsException- if the index given is outside the bounds of the collection
-
addRra
public void addRra(int index, java.lang.String vRra) throws java.lang.IndexOutOfBoundsException- Parameters:
index-vRra-- Throws:
java.lang.IndexOutOfBoundsException- if the index given is outside the bounds of the collection
-
enumerateRra
public java.util.Enumeration<java.lang.String> enumerateRra()
Method enumerateRra.- Returns:
- an Enumeration over all possible elements of this collection
-
equals
public boolean equals(java.lang.Object obj)
Overrides the java.lang.Object.equals method.- Overrides:
equalsin classjava.lang.Object- Parameters:
obj-- Returns:
- true if the objects are equal.
-
getRra
public java.lang.String getRra(int index) throws java.lang.IndexOutOfBoundsExceptionMethod getRra.- Parameters:
index-- Returns:
- the value of the java.lang.String at the given index
- Throws:
java.lang.IndexOutOfBoundsException- if the index given is outside the bounds of the collection
-
getRra
public java.lang.String[] getRra()
Method getRra.Returns the contents of the collection in an Array.Note: Just in case the collection contents are changing in another thread, we pass a 0-length Array of the correct type into the API call. This way we know that the Array returned is of exactly the correct length.
- Returns:
- this collection as an Array
-
getRraCollection
public java.util.List<java.lang.String> getRraCollection()
Method getRraCollection.Returns a reference to '_rraList'. No type checking is performed on any modifications to the Vector.- Returns:
- a reference to the Vector backing this class
-
getRraCount
public int getRraCount()
Method getRraCount.- Returns:
- the size of this collection
-
getStep
public java.lang.Integer getStep()
Returns the value of field 'step'. The field 'step' has the following description: step size for the RRD- Returns:
- the value of field 'Step'.
-
iterateRra
public java.util.Iterator<java.lang.String> iterateRra()
Method iterateRra.- Returns:
- an Iterator over all possible elements in this collection
-
removeAllRra
public void removeAllRra()
-
removeRra
public boolean removeRra(java.lang.String vRra)
Method removeRra.- Parameters:
vRra-- Returns:
- true if the object was removed from the collection.
-
removeRraAt
public java.lang.String removeRraAt(int index)
Method removeRraAt.- Parameters:
index-- Returns:
- the element removed from the collection
-
setRra
public void setRra(int index, java.lang.String vRra) throws java.lang.IndexOutOfBoundsException- Parameters:
index-vRra-- Throws:
java.lang.IndexOutOfBoundsException- if the index given is outside the bounds of the collection
-
setRra
public void setRra(java.lang.String[] vRraArray)
- Parameters:
vRraArray-
-
setRra
public void setRra(java.util.List<java.lang.String> vRraList)
Sets the value of '_rraList' by copying the given Vector. All elements will be checked for type safety.- Parameters:
vRraList- the Vector to copy.
-
setStep
public void setStep(int step)
Sets the value of field 'step'. The field 'step' has the following description: step size for the RRD- Parameters:
step- the value of field 'step'.
-
-