module CiteProc

CiteProc processes bibliographic data and formats it according to a style defined in CSL (Citation Style Language).

@author Sylvester Keil

Copyright 2009-2014 Sylvester Keil. All rights reserved.

Copyright 2012 President and Fellows of Harvard College.

Constants

VERSION

Public Class Methods

downcase(string) click to toggle source
# File lib/citeproc/compatibility.rb, line 16
def downcase(string)
  java.lang.String.new(string).to_lower_case(java.util.Locale::ENGLISH).to_s
end
upcase(string) click to toggle source
# File lib/citeproc/compatibility.rb, line 12
def upcase(string)
  java.lang.String.new(string).to_upper_case(java.util.Locale::ENGLISH).to_s
end

Private Instance Methods

downcase(string) click to toggle source
# File lib/citeproc/compatibility.rb, line 16
def downcase(string)
  java.lang.String.new(string).to_lower_case(java.util.Locale::ENGLISH).to_s
end
upcase(string) click to toggle source
# File lib/citeproc/compatibility.rb, line 12
def upcase(string)
  java.lang.String.new(string).to_upper_case(java.util.Locale::ENGLISH).to_s
end