Class: CharDet::Big5Prober

Inherits:
MultiByteCharSetProber show all
Defined in:
lib/rchardet/big5prober.rb

Instance Attribute Summary

Attributes inherited from CharSetProber

#active

Instance Method Summary collapse

Methods inherited from MultiByteCharSetProber

#confidence, #feed, #reset

Methods inherited from CharSetProber

#confidence, #filter_high_bit_only, #filter_with_english_letters, #filter_without_english_letters, #reset, #result, #state

Constructor Details

#initializeBig5Prober

Returns a new instance of Big5Prober.



31
32
33
34
35
36
# File 'lib/rchardet/big5prober.rb', line 31

def initialize
  super
  @_mCodingSM = CodingStateMachine.new(Big5SMModel)
  @_mDistributionAnalyzer = Big5DistributionAnalysis.new()
  reset()
end

Instance Method Details

#charset_nameObject



38
39
40
# File 'lib/rchardet/big5prober.rb', line 38

def charset_name
  return "Big5"
end