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

#feed, #get_confidence, #reset

Methods inherited from CharSetProber

#feed, #filter_high_bit_only, #filter_with_english_letters, #filter_without_english_letters, #get_confidence, #get_state, #reset

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
  @codingSM = CodingStateMachine.new(Big5SMModel)
  @distributionAnalyzer = Big5DistributionAnalysis.new()
  reset()
end

Instance Method Details

#get_charset_nameObject



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

def get_charset_name
  return "Big5"
end