Sha256: e002a4e62918b05579a3b0d9073c454f29b5f696936e10103ba9408b5bc58c0a

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

module Eddy
  module Models
    module Element
      # Alphanumeric string including special characters
      class AN < Base

        # @param min [Integer]
        # @param max [Integer]
        # @param req [String] (nil)
        # @param ref [String] (nil)
        # @param val [String] (nil)
        # @return [void]
        def initialize(
          min:,
          max:,
          req: nil,
          ref: nil,
          val: nil
        )
          @type = "AN"
          @min = min
          @max = max
          self.req = req
          self.ref = ref
          self.value = val
        end

        # @raise [Eddy::Errors::ElementNilValueError] If the element is required and no value has been set.
        # @return [String]
        def value()
          if @val.nil?
            case self.req
            when "M"      then raise Eddy::Errors::ElementNilValueError.new(element: self)
            when "O", "C" then return ""
            else raise Eddy::Errors::Error, "Invalid req value: #{self.req}"
            end
          end
          return @val.ljust(self.min)
        end

        # @raise [Eddy::Errors::ElementValidationError]
        # @param arg [String]
        # @return [void]
        def value=(arg)
          if arg.nil?
            @val = arg
            return
          end
          raise Eddy::Errors::TypeValidationError.new(element: self, arg: arg) unless arg.is_a?(String)
          raise Eddy::Errors::LengthValidationError.new(element: self, arg: arg) if arg.length > self.max
          @val = arg
        end

      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eddy-0.6.0 lib/eddy/models/element/an.rb