public enum ServiceType extends Enum<ServiceType>
| Enum Constant and Description |
|---|
REST
JSON Rest API.
|
SOAP
XML Soap API.
|
| Modifier and Type | Method and Description |
|---|---|
static ServiceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceType REST
public static final ServiceType SOAP
public static ServiceType[] values()
for (ServiceType c : ServiceType.values()) System.out.println(c);
public static ServiceType 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 nullCopyright © 2017–2018 Wasiq Bhamla. All rights reserved.