public enum ServiceType extends Enum<ServiceType>
| Enum Constant and Description |
|---|
IPS
service type IPS
|
QBO
service type QBO
|
QBOPremier
service type QBO OLB Premier
|
| 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 QBO
public static final ServiceType IPS
public static final ServiceType QBOPremier
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 © 2025. All Rights Reserved.