public enum ConfigurationGroup extends Enum<ConfigurationGroup>
Java class for ConfigurationGroup.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ConfigurationGroup"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="AUTHENTICATION"/> <enumeration value="AUTHORIZATION"/> <enumeration value="AGENT"/> <enumeration value="EXTERNAL_SERVICES"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AGENT |
AUTHENTICATION |
AUTHORIZATION |
EXTERNAL_SERVICES |
Modifier and Type | Method and Description |
---|---|
static ConfigurationGroup |
fromValue(String v) |
String |
value() |
static ConfigurationGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationGroup AUTHENTICATION
public static final ConfigurationGroup AUTHORIZATION
public static final ConfigurationGroup AGENT
public static final ConfigurationGroup EXTERNAL_SERVICES
public static ConfigurationGroup[] values()
for (ConfigurationGroup c : ConfigurationGroup.values()) System.out.println(c);
public static ConfigurationGroup 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()
public static ConfigurationGroup fromValue(String v)
Copyright © 2010–2017 www.hack23.com. All rights reserved.