tosch-hl7
    Preparing search index...

    Interface HL7FieldAccess

    Represents a field with access to components (allows writing).

    interface HL7FieldAccess {
        getComponent(index: number): string;
        getComponents(): string[];
        toString(): string;
        valueOf(): string;
        [index: number]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [index: number]: any

      Access components by index. May return null if not present.

    Index

    Methods

    • Retrieves a specific component by index.

      Parameters

      • index: number

      Returns string

    • Retrieves all components as strings.

      Returns string[]