Class: Avro::Schema::EnumSchema

Inherits:
NamedSchema show all
Defined in:
lib/avro/schema.rb

Constant Summary

Constants inherited from Avro::Schema

INT_MAX_VALUE, INT_MIN_VALUE, LONG_MAX_VALUE, LONG_MIN_VALUE, NAMED_TYPES, NAMED_TYPES_SYM, PRIMITIVE_TYPES, PRIMITIVE_TYPES_SYM, VALID_TYPES, VALID_TYPES_SYM

Instance Attribute Summary collapse

Attributes inherited from NamedSchema

#name, #namespace

Attributes inherited from Avro::Schema

#logical_type, #type_sym

Instance Method Summary collapse

Methods inherited from NamedSchema

#fullname

Methods inherited from Avro::Schema

#==, #hash, #md5_fingerprint, parse, real_parse, #sha256_fingerprint, #subparse, #to_s, #type, #type_adapter, validate

Constructor Details

#initialize(name, space, symbols, names = nil) ⇒ EnumSchema

Returns a new instance of EnumSchema.



330
331
332
333
334
335
336
337
# File 'lib/avro/schema.rb', line 330

def initialize(name, space, symbols, names=nil)
  if symbols.uniq.length < symbols.length
    fail_msg = 'Duplicate symbol: %s' % symbols
    raise Avro::SchemaParseError, fail_msg
  end
  super(:enum, name, space, names)
  @symbols = symbols
end

Instance Attribute Details

#symbolsObject (readonly)

Returns the value of attribute symbols.



329
330
331
# File 'lib/avro/schema.rb', line 329

def symbols
  @symbols
end

Instance Method Details

#to_avro(names = Set.new) ⇒ Object



339
340
341
342
# File 'lib/avro/schema.rb', line 339

def to_avro(names=Set.new)
  avro = super
  avro.is_a?(Hash) ? avro.merge('symbols' => symbols) : avro
end