VSS.XML.Templates.Values

Entities

Simple Types

Record Types

Description

Copyright (C) 2022, AdaCore

SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

Value

type Value (Kind : Value_Kind) is record
   case Kind is
      when Nothing | Default =>
         null;
      when Error =>
         Message       : VSS.Strings.Virtual_String;
      when Boolean =>
         Boolean_Value : Standard.Boolean;
      when String =>
         String_Value  : VSS.Strings.Virtual_String;
      when Content =>
         Content_Value : VSS.XML.Event_Vectors.Vector;
   end case;
end record;
Record fields
Kind
Message
Boolean_Value
String_Value
Content_Value

Value_Kind

type Value_Kind is (Error, Nothing, Default, Boolean, String, Content);
Enumeration Literal
Error
Nothing
Default
Boolean
String
Content