public enum ServiceNameTypeEnum extends java.lang.Enum<ServiceNameTypeEnum>
Java class for serviceNameTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="serviceNameTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="TaskQueryService"/>
<enumeration value="TaskService"/>
<enumeration value="UserMetadataService"/>
<enumeration value="TaskMetadataService"/>
<enumeration value="RuntimeConfigService"/>
<enumeration value="AGMetadataService"/>
<enumeration value="AGQueryService"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AG_METADATA_SERVICE |
AG_QUERY_SERVICE |
RUNTIME_CONFIG_SERVICE |
TASK_METADATA_SERVICE |
TASK_QUERY_SERVICE |
TASK_SERVICE |
USER_METADATA_SERVICE |
| Modifier and Type | Method and Description |
|---|---|
static ServiceNameTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static ServiceNameTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceNameTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceNameTypeEnum TASK_QUERY_SERVICE
public static final ServiceNameTypeEnum TASK_SERVICE
public static final ServiceNameTypeEnum USER_METADATA_SERVICE
public static final ServiceNameTypeEnum TASK_METADATA_SERVICE
public static final ServiceNameTypeEnum RUNTIME_CONFIG_SERVICE
public static final ServiceNameTypeEnum AG_METADATA_SERVICE
public static final ServiceNameTypeEnum AG_QUERY_SERVICE
public static ServiceNameTypeEnum[] values()
for (ServiceNameTypeEnum c : ServiceNameTypeEnum.values()) System.out.println(c);
public static ServiceNameTypeEnum 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 java.lang.String value()
public static ServiceNameTypeEnum fromValue(java.lang.String v)