Record Class MDCReadSettings
java.lang.Object
java.lang.Record
com.github._1c_syntax.bsl.mdclasses.MDCReadSettings
- Record Components:
skipSupport- Пропускать чтение настроек поставки конфигурацииskipRoleData- Пропускать чтение содержимого ролейskipXdtoPackage- Пропускать чтение содержимого xdto пакетовskipFormElementItems- Пропускать чтение элементов формskipDataCompositionSchema- Пропускать чтение элементов макетов системы компоновки
public record MDCReadSettings(boolean skipSupport, boolean skipRoleData, boolean skipXdtoPackage, boolean skipFormElementItems, boolean skipDataCompositionSchema)
extends Record
Настройки чтения MDC
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final MDCReadSettingsНастройки по умолчаниюstatic final MDCReadSettingsШаблон с отключением только чтения поддержки -
Constructor Summary
ConstructorsConstructorDescriptionMDCReadSettings(boolean skipSupport, boolean skipRoleData, boolean skipXdtoPackage, boolean skipFormElementItems, boolean skipDataCompositionSchema) Creates an instance of aMDCReadSettingsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns the value of theskipDataCompositionSchemarecord component.booleanReturns the value of theskipFormElementItemsrecord component.booleanReturns the value of theskipRoleDatarecord component.booleanReturns the value of theskipSupportrecord component.booleanReturns the value of theskipXdtoPackagerecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
DEFAULT
Настройки по умолчанию -
SKIP_SUPPORT
Шаблон с отключением только чтения поддержки
-
-
Constructor Details
-
MDCReadSettings
public MDCReadSettings(boolean skipSupport, boolean skipRoleData, boolean skipXdtoPackage, boolean skipFormElementItems, boolean skipDataCompositionSchema) Creates an instance of aMDCReadSettingsrecord class.- Parameters:
skipSupport- the value for theskipSupportrecord componentskipRoleData- the value for theskipRoleDatarecord componentskipXdtoPackage- the value for theskipXdtoPackagerecord componentskipFormElementItems- the value for theskipFormElementItemsrecord componentskipDataCompositionSchema- the value for theskipDataCompositionSchemarecord component
-
-
Method Details
-
builder
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with '=='. -
skipSupport
public boolean skipSupport()Returns the value of theskipSupportrecord component.- Returns:
- the value of the
skipSupportrecord component
-
skipRoleData
public boolean skipRoleData()Returns the value of theskipRoleDatarecord component.- Returns:
- the value of the
skipRoleDatarecord component
-
skipXdtoPackage
public boolean skipXdtoPackage()Returns the value of theskipXdtoPackagerecord component.- Returns:
- the value of the
skipXdtoPackagerecord component
-
skipFormElementItems
public boolean skipFormElementItems()Returns the value of theskipFormElementItemsrecord component.- Returns:
- the value of the
skipFormElementItemsrecord component
-
skipDataCompositionSchema
public boolean skipDataCompositionSchema()Returns the value of theskipDataCompositionSchemarecord component.- Returns:
- the value of the
skipDataCompositionSchemarecord component
-