The clojure-java-interop tag has no wiki summary.
11
votes
2answers
304 views
Why Clojure has 5 ways to define a class instead of just one?
Clojure has gen-class, reify, proxy and also deftype and defrecord to define new class-like datatypes. For a language that values syntactic simplicity and abhors unnecessary complexity, it seems like ...
8
votes
2answers
290 views
Options for creating Java classes in Clojure
There are a few different ways to create Java classes in Clojure, so what are the tradeoffs when picking between gen-class, proxy, and reify in Clojure? (are there other ways to create Java classes ...
7
votes
3answers
208 views
How can I parameterize access to a Java enum in clojure?
Say I have a Java enum. For example:
public enum Suits {CLUBS, DIAMONDS, HEARTS, SPADES};
Normally, I can do something in clojure with that enum like so:
(defn do-something []
(let [s ...
6
votes
1answer
106 views
clojure gen-class varargs constructor
in the :constructors map and subsequent -init definitions, how do I represent a varargs constructor (assuming the superclass has multiple constructors of which one is varargs) ?
6
votes
4answers
169 views
Use Java object as Clojure map
I have a Java class that I'd like to use in Clojure. But, I want to use it as a Clojure map. What are the steps required to do so?
I've looked at the code for IPersistentMap -- should the Java ...
5
votes
2answers
125 views
How does Clojure's laziness interact with calls to Java/impure code?
We stumbled upon an issue in our code today, and couldn't answer this Clojure question:
Does Clojure evaluate impure code (or calls to Java code) strictly or lazily?
It seems that side-effects + ...
0
votes
3answers
120 views
Clojure adding a border to a JPanel and in general accessing java methods in objects
Coming from LISP I am having my most challenging moments when accessing java objects. I am trying to put a titled border on a JPanel. Here is my code and exception:
user=> (import '(javax.swing ...
0
votes
1answer
45 views
clojure — name conflicts in a defined record?
I have a misbehaving piece of code; when I name a record MethodInfo, it no longer overrides the .toString method correctly.
(defrecord MethodInfo [^clojure.lang.ISeq x ^clojure.lang.ISeq y]
...