class OCI8::Metadata::TypeMethod

def encapsulation

or :private.
encapsulation level of the method. Values are :public
def encapsulation
  case attr_get_ub4(OCI_ATTR_ENCAPSULATION)
  when 0; :private
  when 1; :public
  end
end