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 theISupplySettingsManagerduring the module integration policies check.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description DEFAULTLeave the default merge policy as-isDELETEDelete MAIN side module/method as a result of the mergeDO_NOT_MERGELeave MAIN side module/method unchangedGET_FROM_OTHERGet the requested module/method from the OTHER side of the mergeUPDATE_SIGNATURE_ONLYUpdate method signature but leave MAIN method body intact
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ModuleIntegrationSettingsvalueOf(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_OTHERpublic static final ModuleIntegrationSettings GET_FROM_OTHER Get the requested module/method from the OTHER side of the merge
 - 
DO_NOT_MERGEpublic static final ModuleIntegrationSettings DO_NOT_MERGE Leave MAIN side module/method unchanged
 - 
DELETEpublic static final ModuleIntegrationSettings DELETE Delete MAIN side module/method as a result of the merge
 - 
DEFAULTpublic static final ModuleIntegrationSettings DEFAULT Leave the default merge policy as-is
 - 
UPDATE_SIGNATURE_ONLYpublic static final ModuleIntegrationSettings UPDATE_SIGNATURE_ONLY Update method signature but leave MAIN method body intact
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-