public enum GroupType extends Enum<GroupType>
Java class for GroupType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="GroupType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Team"/>
<enumeration value="Company"/>
<enumeration value="SP"/>
<enumeration value="Server"/>
</restriction>
</simpleType>
| 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 TEAM
public static final GroupType COMPANY
public static final GroupType SP
public static final GroupType SERVER
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 © 2020. All rights reserved.