public enum ServicePaymentItemType extends Enum<ServicePaymentItemType>
| Enum Constant and Description |
|---|
ANOTHER_PAYMENT_ITEM |
COMPOUND_PAYMENT_ITEM |
PROVIDING_RID |
SERVICE |
WORK |
| Modifier and Type | Method and Description |
|---|---|
static ServicePaymentItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServicePaymentItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServicePaymentItemType SERVICE
public static final ServicePaymentItemType WORK
public static final ServicePaymentItemType PROVIDING_RID
public static final ServicePaymentItemType COMPOUND_PAYMENT_ITEM
public static final ServicePaymentItemType ANOTHER_PAYMENT_ITEM
public static ServicePaymentItemType[] values()
for (ServicePaymentItemType c : ServicePaymentItemType.values()) System.out.println(c);
public static ServicePaymentItemType 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 © 2023. All rights reserved.