Enum GoodPaymentItemType
- java.lang.Object
-
- java.lang.Enum<GoodPaymentItemType>
-
- ru.moysklad.remap_1_2.entities.products.GoodPaymentItemType
-
- All Implemented Interfaces:
Serializable,Comparable<GoodPaymentItemType>
public enum GoodPaymentItemType extends Enum<GoodPaymentItemType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANOTHER_PAYMENT_ITEMCOMPOUND_PAYMENT_ITEMEXCISABLE_GOODGOOD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GoodPaymentItemTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GoodPaymentItemType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GOOD
public static final GoodPaymentItemType GOOD
-
EXCISABLE_GOOD
public static final GoodPaymentItemType EXCISABLE_GOOD
-
COMPOUND_PAYMENT_ITEM
public static final GoodPaymentItemType COMPOUND_PAYMENT_ITEM
-
ANOTHER_PAYMENT_ITEM
public static final GoodPaymentItemType ANOTHER_PAYMENT_ITEM
-
-
Method Detail
-
values
public static GoodPaymentItemType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GoodPaymentItemType c : GoodPaymentItemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GoodPaymentItemType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-