class CharDet::EUCKRProber

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/rchardet/euckrprober.rb, line 31
def initialize
  super()
  @codingSM = CodingStateMachine.new(EUCKRSMModel)
  @distributionAnalyzer = EUCKRDistributionAnalysis.new()
  reset()
end

Public Instance Methods

get_charset_name() click to toggle source
# File lib/rchardet/euckrprober.rb, line 38
def get_charset_name
  return "EUC-KR"
end