Class: CharDet::Big5Prober
- Inherits:
-
MultiByteCharSetProber
- Object
- CharSetProber
- MultiByteCharSetProber
- CharDet::Big5Prober
- Defined in:
- lib/rchardet/big5prober.rb
Instance Attribute Summary
Attributes inherited from CharSetProber
Instance Method Summary collapse
- #get_charset_name ⇒ Object
-
#initialize ⇒ Big5Prober
constructor
A new instance of Big5Prober.
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
#initialize ⇒ Big5Prober
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_name ⇒ Object
38 39 40 |
# File 'lib/rchardet/big5prober.rb', line 38 def get_charset_name return "Big5" end |