public enum TUserType extends Enum<TUserType>
Java class for tUserType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="tUserType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="PRIMARY_USER"/>
<enumeration value="ENTRUSTED_USER"/>
<enumeration value="ADMINISTRATOR"/>
<enumeration value="OFFICIAL"/>
<enumeration value="OFFICIAL_CERT"/>
<enumeration value="LIQUIDATOR"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADMINISTRATOR |
ENTRUSTED_USER |
LIQUIDATOR |
OFFICIAL |
OFFICIAL_CERT |
PRIMARY_USER |
| Modifier and Type | Method and Description |
|---|---|
static TUserType |
fromValue(String v) |
String |
value() |
static TUserType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TUserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TUserType PRIMARY_USER
public static final TUserType ENTRUSTED_USER
public static final TUserType ADMINISTRATOR
public static final TUserType OFFICIAL
public static final TUserType OFFICIAL_CERT
public static final TUserType LIQUIDATOR
public static TUserType[] values()
for (TUserType c : TUserType.values()) System.out.println(c);
public static TUserType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
Copyright © 2017. All rights reserved.