public class MibObjs extends Object implements Serializable
Constructor and Description |
---|
MibObjs() |
Modifier and Type | Method and Description |
---|---|
void |
addMibObj(int index,
MibObj vMibObj) |
void |
addMibObj(MibObj vMibObj) |
Enumeration<MibObj> |
enumerateMibObj()
Method enumerateMibObj.
|
boolean |
equals(Object obj)
Overrides the Object.equals method.
|
MibObj[] |
getMibObj()
Method getMibObj.Returns the contents of the collection in an Array.
|
MibObj |
getMibObj(int index)
Method getMibObj.
|
List<MibObj> |
getMibObjCollection()
Method getMibObjCollection.Returns a reference to 'mibObjList'.
|
int |
getMibObjCount()
Method getMibObjCount.
|
int |
hashCode()
Method hashCode.
|
Iterator<MibObj> |
iterateMibObj()
Method iterateMibObj.
|
void |
removeAllMibObj() |
boolean |
removeMibObj(MibObj vMibObj)
Method removeMibObj.
|
MibObj |
removeMibObjAt(int index)
Method removeMibObjAt.
|
void |
setMibObj(int index,
MibObj vMibObj) |
void |
setMibObj(List<MibObj> vMibObjList)
Sets the value of 'mibObjList' by copying the given Vector.
|
void |
setMibObj(MibObj[] vMibObjArray) |
void |
setMibObjCollection(List<MibObj> mibObjList)
Deprecated.
|
public void addMibObj(MibObj vMibObj) throws IndexOutOfBoundsException
vMibObj
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic void addMibObj(int index, MibObj vMibObj) throws IndexOutOfBoundsException
index
- vMibObj
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic Enumeration<MibObj> enumerateMibObj()
public boolean equals(Object obj)
public MibObj getMibObj(int index) throws IndexOutOfBoundsException
index
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic MibObj[] getMibObj()
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.
public List<MibObj> getMibObjCollection()
public int getMibObjCount()
public int hashCode()
public Iterator<MibObj> iterateMibObj()
public void removeAllMibObj()
public boolean removeMibObj(MibObj vMibObj)
vMibObj
- public MibObj removeMibObjAt(int index)
index
- public void setMibObj(int index, MibObj vMibObj) throws IndexOutOfBoundsException
index
- vMibObj
- IndexOutOfBoundsException
- if the index given is outside
the bounds of the collectionpublic void setMibObj(MibObj[] vMibObjArray)
vMibObjArray
- public void setMibObj(List<MibObj> vMibObjList)
vMibObjList
- the Vector to copy.Copyright © 2017. All rights reserved.