Feedback

  • Contents
 

User.startLoggedInStationsEnum Enumeration Property

Definition

This property returns an enumeration of logged in stations for the current agent. The enumeration is traversed using the hasMoreElements and nextElement methods of the enumeration. Each call to the nextElement method returns successive elements of the series. The hasMoreElements method will return a Boolean true if this enumeration contains more elements.

Syntax

Queue.startLoggedInStationsEnum

Usage

Read Yes

Write No

Value Assigned

None.

Value Returned

Java Enumeration

The enumeration contains the list of logged-in stations.


Java Enumeration Example (JavaScript)

// show all logged-in stations for this user
var stations = scripter.myUser.startLoggedInStationsEnum;
while (stations.hasMoreElements()) {
    alert(stations.nextElement());
}