Package com._1c.g5.v8.dt.supply
Enum ModuleIntegrationSettings
- java.lang.Object
-
- java.lang.Enum<ModuleIntegrationSettings>
-
- com._1c.g5.v8.dt.supply.ModuleIntegrationSettings
-
- All Implemented Interfaces:
Serializable
,Comparable<ModuleIntegrationSettings>
public enum ModuleIntegrationSettings extends Enum<ModuleIntegrationSettings>
Values being returned by theISupplySettingsManager
during the module integration policies check.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFAULT
Leave the default merge policy as-isDELETE
Delete MAIN side module/method as a result of the mergeDO_NOT_MERGE
Leave MAIN side module/method unchangedGET_FROM_OTHER
Get the requested module/method from the OTHER side of the mergeUPDATE_SIGNATURE_ONLY
Update method signature but leave MAIN method body intact
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModuleIntegrationSettings
valueOf(String name)
Returns the enum constant of this type with the specified name.static ModuleIntegrationSettings[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET_FROM_OTHER
public static final ModuleIntegrationSettings GET_FROM_OTHER
Get the requested module/method from the OTHER side of the merge
-
DO_NOT_MERGE
public static final ModuleIntegrationSettings DO_NOT_MERGE
Leave MAIN side module/method unchanged
-
DELETE
public static final ModuleIntegrationSettings DELETE
Delete MAIN side module/method as a result of the merge
-
DEFAULT
public static final ModuleIntegrationSettings DEFAULT
Leave the default merge policy as-is
-
UPDATE_SIGNATURE_ONLY
public static final ModuleIntegrationSettings UPDATE_SIGNATURE_ONLY
Update method signature but leave MAIN method body intact
-
-
Method Detail
-
values
public static ModuleIntegrationSettings[] 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 (ModuleIntegrationSettings c : ModuleIntegrationSettings.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModuleIntegrationSettings 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
-
-