Documentation Language: Swift

Enumeration

BooleanString

Boolean string representations used in XMI serialisation.

enum BooleanString

Overview

Provides type-safe access to string representations of boolean values as they appear in XMI documents. Supports both standard and alternative representations for robust parsing.

Usage

let isAbstract = BooleanString.trueValue.rawValue == abstractAttribute

Topics

Enumeration Cases

E
BooleanString.falseValue

String representation of false value.

E
BooleanString.trueValue

String representation of true value.

Initializers

Type Methods

?
fromString(_:)

Converts string to boolean value.

?
toString(_:)

Converts boolean to string representation.

Default Implementations

Relationships

Conforms To