public static enum ServiceType.AccessType extends Enum<ServiceType.AccessType>
| Enum Constant and Description |
|---|
Catalog |
DataAccess |
Metadata |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static ServiceType.AccessType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceType.AccessType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceType.AccessType Catalog
public static final ServiceType.AccessType Metadata
public static final ServiceType.AccessType DataAccess
public static final ServiceType.AccessType Unknown
protected String name
public static ServiceType.AccessType[] values()
for (ServiceType.AccessType c : ServiceType.AccessType.values()) System.out.println(c);
public static ServiceType.AccessType 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 getName()