Enum NotificationExchange.TaskType
- java.lang.Object
-
- java.lang.Enum<NotificationExchange.TaskType>
-
- ru.moysklad.remap_1_2.entities.notifications.NotificationExchange.TaskType
-
- All Implemented Interfaces:
Serializable,Comparable<NotificationExchange.TaskType>
- Enclosing class:
- NotificationExchange
public static enum NotificationExchange.TaskType extends Enum<NotificationExchange.TaskType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NotificationExchange.TaskTypevalueOf(String name)Returns the enum constant of this type with the specified name.static NotificationExchange.TaskType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXPORT_CSV_GOOD
public static final NotificationExchange.TaskType EXPORT_CSV_GOOD
Export types
-
EXPORT_CSV_AGENT
public static final NotificationExchange.TaskType EXPORT_CSV_AGENT
-
EXPORT_MS_XML
public static final NotificationExchange.TaskType EXPORT_MS_XML
-
EXPORT_1C_V2_XML
public static final NotificationExchange.TaskType EXPORT_1C_V2_XML
-
EXPORT_UNISENDER
public static final NotificationExchange.TaskType EXPORT_UNISENDER
-
EXPORT_1C_V3_XML
public static final NotificationExchange.TaskType EXPORT_1C_V3_XML
-
EXPORT_SUBSCRIBEPRO
public static final NotificationExchange.TaskType EXPORT_SUBSCRIBEPRO
-
EXPORT_1C_CLIENT_BANK
public static final NotificationExchange.TaskType EXPORT_1C_CLIENT_BANK
-
EXPORT_ALFA_PAYMENTS
public static final NotificationExchange.TaskType EXPORT_ALFA_PAYMENTS
-
EXPORT_TOCHKA_PAYMENTS
public static final NotificationExchange.TaskType EXPORT_TOCHKA_PAYMENTS
-
EXPORT_MODULBANK_PAYMENTS
public static final NotificationExchange.TaskType EXPORT_MODULBANK_PAYMENTS
-
EXPORT_1C_ENTERPRISE_DATA
public static final NotificationExchange.TaskType EXPORT_1C_ENTERPRISE_DATA
-
EXPORT_TINKOFF_PAYMENTS
public static final NotificationExchange.TaskType EXPORT_TINKOFF_PAYMENTS
-
EXPORT_GOOD
public static final NotificationExchange.TaskType EXPORT_GOOD
-
EXPORT_CUSTOM_ENTITY
public static final NotificationExchange.TaskType EXPORT_CUSTOM_ENTITY
-
IMPORTER_CSV
public static final NotificationExchange.TaskType IMPORTER_CSV
Import types
-
IMPORTER_YML
public static final NotificationExchange.TaskType IMPORTER_YML
-
IMPORTER_CSV_AGENT
public static final NotificationExchange.TaskType IMPORTER_CSV_AGENT
-
IMPORTER_CSV_CUSTOMERORDER
public static final NotificationExchange.TaskType IMPORTER_CSV_CUSTOMERORDER
-
IMPORTER_CSV_PURCHASEORDER
public static final NotificationExchange.TaskType IMPORTER_CSV_PURCHASEORDER
-
IMPORTER_CSV_PRICELIST
public static final NotificationExchange.TaskType IMPORTER_CSV_PRICELIST
-
IMPORTER_MS_XML
public static final NotificationExchange.TaskType IMPORTER_MS_XML
-
IMPORTER_1C_CLIENT_BANK
public static final NotificationExchange.TaskType IMPORTER_1C_CLIENT_BANK
-
IMPORT_ALFA_PAYMENTS
public static final NotificationExchange.TaskType IMPORT_ALFA_PAYMENTS
-
IMPORT_ALFA_PAYMENTS_REQUEST
public static final NotificationExchange.TaskType IMPORT_ALFA_PAYMENTS_REQUEST
-
IMPORT_ALFA_PAYMENTS_SAVE
public static final NotificationExchange.TaskType IMPORT_ALFA_PAYMENTS_SAVE
-
IMPORT_TOCHKA_PAYMENTS
public static final NotificationExchange.TaskType IMPORT_TOCHKA_PAYMENTS
-
IMPORT_MODULBANK_PAYMENTS
public static final NotificationExchange.TaskType IMPORT_MODULBANK_PAYMENTS
-
IMPORT_TOCHKA_PAYMENTS_SAVE
public static final NotificationExchange.TaskType IMPORT_TOCHKA_PAYMENTS_SAVE
-
IMPORT_MODULBANK_PAYMENTS_SAVE
public static final NotificationExchange.TaskType IMPORT_MODULBANK_PAYMENTS_SAVE
-
IMPORT_TINKOFF_PAYMENTS
public static final NotificationExchange.TaskType IMPORT_TINKOFF_PAYMENTS
-
IMPORT_TINKOFF_PAYMENTS_SAVE
public static final NotificationExchange.TaskType IMPORT_TINKOFF_PAYMENTS_SAVE
-
IMPORTER_GOOD
public static final NotificationExchange.TaskType IMPORTER_GOOD
-
IMPORTER_GOOD_IN_DOC
public static final NotificationExchange.TaskType IMPORTER_GOOD_IN_DOC
-
IMPORT_EDO_SUPPLY
public static final NotificationExchange.TaskType IMPORT_EDO_SUPPLY
-
IMPORT_UNION_COMPANY
public static final NotificationExchange.TaskType IMPORT_UNION_COMPANY
-
IMPORT_SBERBANK_PAYMENTS_REQUEST
public static final NotificationExchange.TaskType IMPORT_SBERBANK_PAYMENTS_REQUEST
-
IMPORT_SBERBANK_PAYMENTS_SAVE
public static final NotificationExchange.TaskType IMPORT_SBERBANK_PAYMENTS_SAVE
-
IMPORT_UPDATE_VAT_TO_20_PERCENTS
public static final NotificationExchange.TaskType IMPORT_UPDATE_VAT_TO_20_PERCENTS
-
IMPORT_CUSTOM_ENTITY
public static final NotificationExchange.TaskType IMPORT_CUSTOM_ENTITY
-
-
Method Detail
-
values
public static NotificationExchange.TaskType[] 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 (NotificationExchange.TaskType c : NotificationExchange.TaskType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationExchange.TaskType 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
-
-