Interface LicensedUsers
- 
public interface LicensedUsersThe LicensedUsers interface represents a list of users which use a license of a single type. It is obtained from theUserLicenseAuditinterface, and is the result of an audit operation.- Since:
 - MicroStrategy Web 7.5.2
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Enumerationelements()Returns a java.util.Enumeration which can be used to iterate through the collection.WebUserEntityget(int i)Returns the user at the given index in the collectionintgetLicenseType()Returns the license type of the collection, fromEnumDSSXMLLicenseType.booleanisEmpty()Returns whether there are any users in the collection.intsize()Returns the number of users in the collection. 
 - 
 
- 
- 
Method Detail
- 
size
int size()
Returns the number of users in the collection.- Returns:
 - The size of the collection.
 
 
- 
getLicenseType
int getLicenseType()
Returns the license type of the collection, fromEnumDSSXMLLicenseType.- Returns:
 - A value from 
EnumDSSXMLLicenseType. 
 
- 
get
WebUserEntity get(int i)
Returns the user at the given index in the collection- Parameters:
 i- The index of the user to return.- Returns:
 - The 
WebUserobject at the given index in the collection. 
 
- 
isEmpty
boolean isEmpty()
Returns whether there are any users in the collection.- Returns:
 - True if the collection is empty, false otherwise.
 
 
- 
elements
java.util.Enumeration elements()
Returns a java.util.Enumeration which can be used to iterate through the collection.- Returns:
 - A java.util.Enumeration which can be used to iterate through the collection.
 
 
 - 
 
 -