Class: CharDet::GB18030Prober

Inherits:
MultiByteCharSetProber show all
Defined in:
lib/rchardet/gb18030prober.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

#initializeGB18030Prober

Returns a new instance of GB18030Prober.



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

def initialize
  super
  @codingSM = CodingStateMachine.new(GB18030SMModel)
  @distributionAnalyzer = GB18030DistributionAnalysis.new()
  reset()
end

Instance Method Details

#get_charset_nameObject



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

def get_charset_name
  return "GB18030"
end