|
|
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>IR__JavaClassName (infer.IR__JavaClassName)</title><link rel="stylesheet" href="../../odoc.css"/><meta charset="utf-8"/><meta name="generator" content="odoc 1.5.1"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><script src="../../highlight.pack.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body><div class="content"><header><nav><a href="../index.html">Up</a> – <a href="../index.html">infer</a> » IR__JavaClassName</nav><h1>Module <code>IR__JavaClassName</code></h1></header><dl><dt class="spec type" id="type-t"><a href="#type-t" class="anchor"></a><code><span class="keyword">type</span> t</code></dt></dl><div><div class="spec include"><div class="doc"><dl><dt class="spec value" id="val-compare"><a href="#val-compare" class="anchor"></a><code><span class="keyword">val</span> compare : <a href="index.html#type-t">t</a> <span>-></span> <a href="index.html#type-t">t</a> <span>-></span> int</code></dt><dt class="spec value" id="val-equal"><a href="#val-equal" class="anchor"></a><code><span class="keyword">val</span> equal : <a href="index.html#type-t">t</a> <span>-></span> <a href="index.html#type-t">t</a> <span>-></span> bool</code></dt></dl></div></div></div><div class="spec module" id="module-Map"><a href="#module-Map" class="anchor"></a><code><span class="keyword">module</span> Map : <a href="../IStdlib/index.html#module-IStd">IStdlib.IStd</a>.Caml.Map.S <span class="keyword">with</span> <span class="keyword">type</span> <a href="index.html#module-Map">Map</a>.key = <a href="index.html#type-t">t</a></code></div><div class="spec module" id="module-Set"><a href="#module-Set" class="anchor"></a><code><span class="keyword">module</span> Set : <a href="../IStdlib/index.html#module-IStd">IStdlib.IStd</a>.Caml.Set.S <span class="keyword">with</span> <span class="keyword">type</span> <a href="index.html#module-Set">Set</a>.elt = <a href="index.html#type-t">t</a></code></div><dl><dt class="spec value" id="val-make"><a href="#val-make" class="anchor"></a><code><span class="keyword">val</span> make : <span>package:<span>string option</span></span> <span>-></span> <span>classname:string</span> <span>-></span> <a href="index.html#type-t">t</a></code></dt><dd><p><code>make ~package:(Some "java.lang") "Object"</code> creates a value representing <code>java.lang.Object</code></p></dd></dl><dl><dt class="spec value" id="val-from_string"><a href="#val-from_string" class="anchor"></a><code><span class="keyword">val</span> from_string : string <span>-></span> <a href="index.html#type-t">t</a></code></dt><dd><p><code>from_string "java.lang.Object"</code> is same as <code>make ~package:(Some "java.lang") "Object"</code></p></dd></dl><dl><dt class="spec value" id="val-to_string"><a href="#val-to_string" class="anchor"></a><code><span class="keyword">val</span> to_string : <a href="index.html#type-t">t</a> <span>-></span> string</code></dt><dd><p><code>to_string (from_string "X.Y.Z") = "X.Y.Z"</code></p></dd></dl><dl><dt class="spec value" id="val-pp"><a href="#val-pp" class="anchor"></a><code><span class="keyword">val</span> pp : Stdlib.Format.formatter <span>-></span> <a href="index.html#type-t">t</a> <span>-></span> unit</code></dt><dd><p><code>pp</code> includes package if any</p></dd></dl><dl><dt class="spec value" id="val-pp_with_verbosity"><a href="#val-pp_with_verbosity" class="anchor"></a><code><span class="keyword">val</span> pp_with_verbosity : <span>verbose:bool</span> <span>-></span> Stdlib.Format.formatter <span>-></span> <a href="index.html#type-t">t</a> <span>-></span> unit</code></dt><dd><p>if <code>verbose</code> then print package if present, otherwise only print class</p></dd></dl><dl><dt class="spec value" id="val-package"><a href="#val-package" class="anchor"></a><code><span class="keyword">val</span> package : <a href="index.html#type-t">t</a> <span>-></span> <span>string option</span></code></dt><dt class="spec value" id="val-classname"><a href="#val-classname" class="anchor"></a><code><span class="keyword">val</span> classname : <a href="index.html#type-t">t</a> <span>-></span> string</code></dt><dt class="spec value" id="val-is_external_via_config"><a href="#val-is_external_via_config" class="anchor"></a><code><span class="keyword">val</span> is_external_via_config : <a href="index.html#type-t">t</a> <span>-></span> bool</code></dt><dd><p>Considered external based on config flags.</p></dd></dl><dl><dt class="spec value" id="val-get_outer_class_name"><a href="#val-get_outer_class_name" class="anchor"></a><code><span class="keyword">val</span> get_outer_class_name : <a href="index.html#type-t">t</a> <span>-></span> <span><a href="index.html#type-t">t</a> option</span></code></dt><dd><p>If this is an inner class, return the closest outer, e.g. A$B for A$B$C. None if the class is outermost</p></dd></dl><dl><dt class="spec value" id="val-is_anonymous_inner_class_name"><a href="#val-is_anonymous_inner_class_name" class="anchor"></a><code><span class="keyword">val</span> is_anonymous_inner_class_name : <a href="index.html#type-t">t</a> <span>-></span> bool</code></dt><dd><p>True if it is either "classic" anonymous Java class: https://docs.oracle.com/javase/tutorial/java/javaOO/anonymousclasses.html, or a synthetic Java class corresponding to a lambda expression.</p></dd></dl><dl><dt class="spec value" id="val-get_user_defined_class_if_anonymous_inner"><a href="#val-get_user_defined_class_if_anonymous_inner" class="anchor"></a><code><span class="keyword">val</span> get_user_defined_class_if_anonymous_inner : <a href="index.html#type-t">t</a> <span>-></span> <span><a href="index.html#type-t">t</a> option</span></code></dt><dd><p>If the current class is anonymous (<code>is_anonymous_inner_class_name</code> is true), return the corresponding user defined (not anonymous) class this anonymous class belongs to.</p><p>In general case, BOTH anonymous classes and user-defined classes can be nested: SomeClass$NestedClass$1$17$5. In this example, we should return SomeClass$NestedClass.</p><p>If this is not an anonymous class, returns <code>None</code>.</p></dd></dl></div></body></html> |