class Avromatic::Model::Configurable::FieldReference

Wraps a reference to a field so we can access both the string and symbolized versions of the name without repeated memory allocations.

Attributes

name[R]
name_sym[R]

Public Class Methods

new(name) click to toggle source
# File lib/avromatic/model/configurable.rb, line 16
def initialize(name)
  @name = -name
  @name_sym = name.to_sym
end