psdi.mbo

Class MboSetEnumeration

  • java.lang.Object
    • psdi.mbo.MboSetEnumeration


  • public class MboSetEnumeration
    extends java.lang.Object
    This class steps through a MboSet using the Enumeration interface. It starts at position 0 of the MboSet and steps through until the end.
    • Constructor Summary

      Constructors 
      Constructor and Description
      MboSetEnumeration(MboSetRemote msr)
      Constructor takes the MboSet it will step through.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      boolean hasMoreElements()
      Returns true if there is more elements in this enumeration.
      java.lang.Object nextElement()
      Returns the next element in the enumeration.
      MboRemote nextMbo()
      A convience method for use in Mbo code, does the same thing as nextElement but returns the element as a MboRemote.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MboSetEnumeration

        public MboSetEnumeration(MboSetRemote msr)
                          throws MXException,
                                 java.rmi.RemoteException
        Constructor takes the MboSet it will step through.
        Throws:
        MXException
        java.rmi.RemoteException
    • Method Detail

      • hasMoreElements

        public boolean hasMoreElements()
        Returns true if there is more elements in this enumeration.
      • nextElement

        public java.lang.Object nextElement()
                                     throws MXException,
                                            java.rmi.RemoteException
        Returns the next element in the enumeration.
        Throws:
        MXException
        java.rmi.RemoteException
      • nextMbo

        public MboRemote nextMbo()
                          throws MXException,
                                 java.rmi.RemoteException
        A convience method for use in Mbo code, does the same thing as nextElement but returns the element as a MboRemote.
        Throws:
        MXException
        java.rmi.RemoteException