public enum GroupType extends Enum<GroupType>
Java class for group-type.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="group-type">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="basic"/>
<enumeration value="premium"/>
<enumeration value="basic-institution"/>
<enumeration value="premium-institution"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BASIC |
BASIC_INSTITUTION |
PREMIUM |
PREMIUM_INSTITUTION |
| Modifier and Type | Method and Description |
|---|---|
static GroupType |
fromValue(String v) |
String |
value() |
static GroupType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupType BASIC
public static final GroupType PREMIUM
public static final GroupType BASIC_INSTITUTION
public static final GroupType PREMIUM_INSTITUTION
public static GroupType[] values()
for (GroupType c : GroupType.values()) System.out.println(c);
public static GroupType 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.