Package org.azd.enums
Enum Class AccountUserStatus
- All Implemented Interfaces:
Serializable
,Comparable<AccountUserStatus>
,Constable
User status in the account
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionUser has signed in at least once to the VSTS accountUser is removed from the VSTS account by the VSTS account adminUser cannot sign in; primarily used by admin to temporarily remove a user due to absence or license reallocationUser can sign in; primarily used when license is in expired state and we give a grace periodUser is invited to join the VSTS account by the VSTS account admin, but has not signed up/signed in yetUser is disabled; if reenabled, they will still be in the Pending state -
Method Summary
Modifier and TypeMethodDescriptionstatic AccountUserStatus
Returns the enum constant of this class with the specified name.static AccountUserStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ACTIVE
User has signed in at least once to the VSTS account -
DELETED
User is removed from the VSTS account by the VSTS account admin -
DISABLED
User cannot sign in; primarily used by admin to temporarily remove a user due to absence or license reallocation -
EXPIRED
User can sign in; primarily used when license is in expired state and we give a grace period -
NONE
-
PENDING
User is invited to join the VSTS account by the VSTS account admin, but has not signed up/signed in yet -
PENDING_DISABLED
User is disabled; if reenabled, they will still be in the Pending state
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-