| Enum Constant and Description |
|---|
_INVALID |
ADMIN
Admin users can (un)lock clients, send trade limit data, etc.
|
INTERNAL
If the user is meant for internal use only (APIServer, Rocky
/Rocky-pass-through, etc.)
|
MARKET_MAKER
Users that make markets, receive orders, and do last-look .
|
MODEL
These users can't log in.
|
MONITORED
These users are monitored, they will not be able to connect if
no admins are overlooking the system.
|
REGULAR
Regular users, that are not monitored.
|
SUPER
User that can do anything admin, regular, marketMaking, etc.
|
| Modifier and Type | Field and Description |
|---|---|
byte |
val |
| Modifier and Type | Method and Description |
|---|---|
byte |
get() |
static UserType |
get(byte value) |
static java.util.Collection<UserType> |
validValues() |
static UserType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserType INTERNAL
public static final UserType REGULAR
public static final UserType ADMIN
public static final UserType MONITORED
public static final UserType MODEL
public static final UserType MARKET_MAKER
public static final UserType SUPER
public static final UserType _INVALID
public static UserType[] values()
for (UserType c : UserType.values()) System.out.println(c);
public static UserType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic byte get()
public static UserType get(byte value)
public static java.util.Collection<UserType> validValues()