-
Methods in MySTARS that return AccessLevel
Modifier and Type |
Method |
Description |
AccessLevel |
User.getAccessLevel() |
Getter method that retireves the AccessLevel of the User.
|
static AccessLevel |
AccessLevel.valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static AccessLevel[] |
AccessLevel.values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructors in MySTARS with parameters of type AccessLevel
Constructor |
Description |
User(java.lang.String username,
java.lang.String password,
AccessLevel accessLevel) |
Initialiser for the User Class with a new username, password and AccessLevel .
|
User(java.lang.String username,
AccessLevel accessLevel) |
Initialiser for the User Class with a default password and a new username and AccessLevel .
|